Add: Credential user log message.

This commit is contained in:
ghost 2025-12-28 22:09:56 +01:00
parent 5cd29d7100
commit 3b133961f5

View File

@ -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);