Log unhandled sse events (#8949)

This commit is contained in:
pakrym-oai 2026-01-09 12:36:07 -08:00 committed by GitHub
parent bc284669c2
commit cabf85aa18
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -301,7 +301,9 @@ pub async fn process_sse(
}
}
}
_ => {}
_ => {
trace!("unhandled SSE event: {:#?}", event.kind);
}
}
}
}