mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
refactor(mpd): prefer debug over warn
This commit is contained in:
parent
08dce576bd
commit
8fbaf06cbe
@ -74,7 +74,11 @@ std::thread waybar::modules::MPD::event_listener() {
|
||||
dp.emit();
|
||||
}
|
||||
} catch (const std::exception& e) {
|
||||
spdlog::warn("{}: {}", module_name_, e.what());
|
||||
if (e.what() == "Connection to MPD closed") {
|
||||
spdlog::debug("{}: {}", module_name_, e.what());
|
||||
} else {
|
||||
spdlog::warn("{}: {}", module_name_, e.what());
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user