sni: change missing icon in theme logging from info to trace

This commit is contained in:
Marvin Dostal 2022-08-03 17:34:34 +02:00
parent 04d66de866
commit 95b5348c24

View File

@ -335,7 +335,7 @@ Glib::RefPtr<Gdk::Pixbuf> Item::getIconPixbuf() {
// Will throw if it can not find an icon.
return getIconByName(icon_name, getScaledIconSize());
} catch (Glib::Error& e) {
spdlog::info("Item '{}': {}", id, static_cast<std::string>(e.what()));
spdlog::trace("Item '{}': {}", id, static_cast<std::string>(e.what()));
}
}