From 3b133961f5c933674a8116566f70976503f34adf Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 28 Dec 2025 22:09:56 +0100 Subject: [PATCH] Add: Credential user log message. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 1dfa670..cff0c52 100644 --- a/src/main.rs +++ b/src/main.rs @@ -109,6 +109,7 @@ async fn main() -> anyhow::Result<()> { let creds = InMemoryStore::new(); for c in cfg.credentials.iter() { creds.insert(&c.username, &c.password); + info!("credential loaded user={} len={}", c.username, c.password.len()); } let auth = AuthManager::new(creds.clone(), &cfg.auth);