From c28b25d8d9f45091db8ded6ff1c4e3247eabcff9 Mon Sep 17 00:00:00 2001 From: selfhoster1312 Date: Sun, 20 Sep 2026 13:52:30 +0200 Subject: [PATCH] logs: Reduce debug log spam (don't replicate the whole message every line) --- src/ldap/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ldap/handler.rs b/src/ldap/handler.rs index 084cfa5..5b7336c 100644 --- a/src/ldap/handler.rs +++ b/src/ldap/handler.rs @@ -44,7 +44,7 @@ pub async fn ldap_handler(mut stream: LdapStream, mut db: Database) { } /// Return true to keep the connection going, false to close it. -#[tracing::instrument(name = "ldap-handler", skip(client_state, db, stream))] +#[tracing::instrument(name = "ldap-handler", skip(client_state, db, stream, msg))] pub async fn ldap_handler_inner( stream: &mut LdapStream, msg: LdapMsg,