chore: refine auth handler log format for traceability

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-28 21:50:33 -03:00
parent 7cb8f2887e
commit 5d9b1ebf80

View file

@ -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 = {