Add app-server event tracing (#12695)

To help with debugging
This commit is contained in:
pakrym-oai
2026-02-24 14:45:50 -08:00
committed by GitHub
parent ee1520e79e
commit 5571a022eb
3 changed files with 16 additions and 1 deletions

View File

@@ -275,6 +275,10 @@ impl OutgoingMessageSender {
connection_ids: &[ConnectionId],
notification: ServerNotification,
) {
tracing::trace!(
targeted_connections = connection_ids.len(),
"app-server event: {notification}"
);
let outgoing_message = OutgoingMessage::AppServerNotification(notification);
if connection_ids.is_empty() {
if let Err(err) = self