From 611cf51fc8dde2f30d9889f790bf6d0a1c54d2e3 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Thu, 14 Jul 2022 12:59:53 -0500 Subject: [PATCH] trivial: lower modem manager probing verbosity in one other place Fixes: 030a0d51c ("trivial: quiet the modem manager error about unable to probe") --- plugins/modem-manager/fu-plugin-modem-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modem-manager/fu-plugin-modem-manager.c b/plugins/modem-manager/fu-plugin-modem-manager.c index b338bb622..289be28eb 100644 --- a/plugins/modem-manager/fu-plugin-modem-manager.c +++ b/plugins/modem-manager/fu-plugin-modem-manager.c @@ -259,7 +259,7 @@ fu_plugin_mm_device_add(FuPlugin *plugin, MMObject *modem) } dev = fu_mm_device_new(fu_plugin_get_context(plugin), priv->manager, modem); if (!fu_device_setup(FU_DEVICE(dev), &error)) { - g_warning("failed to probe MM device: %s", error->message); + g_debug("failed to probe MM device: %s", error->message); return; } fu_plugin_mm_ensure_modem_power_inhibit(plugin, FU_DEVICE(dev));