Fix debug log format
Some checks are pending
Botlib CI / build (push) Waiting to run
BotServer CI / build (push) Waiting to run
Bottest CI / build (push) Waiting to run
BotUI CI / build (push) Waiting to run

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-27 21:11:15 -03:00
parent 6636f376f2
commit 6083beb248

View file

@ -213,7 +213,7 @@ pub fn get_switchers(
debug!("get_switchers: Retrieved {} switchers from Redis key '{}' for session {}",
switchers.len(), redis_key, session_id);
for sw in &switchers {
debug!(" - Switcher: id={}, label={}", sw.id, sw.label.as_ref().unwrap_or(""));
debug!(" - Switcher: id={}, label={:?}", sw.id, sw.label);
}
}
Err(e) => {