refactor(mpd): prefer debug over info

This commit is contained in:
Alex 2020-05-16 09:28:30 +02:00
parent 4b28518cd5
commit 08dce576bd
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ void waybar::modules::MPD::tryConnect() {
try {
checkErrors(connection_.get());
spdlog::info("{}: Connected to MPD", module_name_);
spdlog::debug("{}: Connected to MPD", module_name_);
} catch (std::runtime_error& e) {
spdlog::error("{}: Failed to connect to MPD: {}", module_name_, e.what());
connection_.reset();