From 5d9b1ebf8052caba6c654fe5740d1c917d059cc0 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 28 Apr 2026 21:50:33 -0300 Subject: [PATCH] chore: refine auth handler log format for traceability --- botserver/src/directory/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botserver/src/directory/mod.rs b/botserver/src/directory/mod.rs index 2401181e..9712587e 100644 --- a/botserver/src/directory/mod.rs +++ b/botserver/src/directory/mod.rs @@ -57,7 +57,7 @@ pub async fn auth_handler( .get("session_id") .and_then(|s| Uuid::parse_str(s).ok()); - info!("Auth handler called: bot_name={}, existing_user_id={:?}, existing_session_id={:?}", + info!("Auth request: bot={}, uid={:?}, sid={:?}, ts={}", bot_name, existing_user_id, existing_session_id); let user_id = {