replaced usage of slog_or_stdlog with slog_or_fallback

I think this was missed on a previous refactoring pass, and never got
tested?
This commit is contained in:
Benjamin Lee 2021-05-02 11:05:45 -07:00 committed by Victor Berger
parent 243d2d8b38
commit 5ac7f7c884
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ impl AutoSession {
where
L: Into<Option<::slog::Logger>>,
{
let logger = crate::slog_or_stdlog(logger)
let logger = crate::slog_or_fallback(logger)
.new(o!("smithay_module" => "backend_session_auto", "session_type" => "auto"));
info!(logger, "Trying to create tty session");