From 95b5348c24ee88dd389cd65d2c513ac212e07015 Mon Sep 17 00:00:00 2001 From: Marvin Dostal Date: Wed, 3 Aug 2022 17:34:34 +0200 Subject: [PATCH] sni: change missing icon in theme logging from info to trace --- src/modules/sni/item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/sni/item.cpp b/src/modules/sni/item.cpp index 07ebeba..773cfda 100644 --- a/src/modules/sni/item.cpp +++ b/src/modules/sni/item.cpp @@ -335,7 +335,7 @@ Glib::RefPtr 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(e.what())); + spdlog::trace("Item '{}': {}", id, static_cast(e.what())); } }