aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2015-03-09 11:38:39 -0500
committerDan Williams <dcbw@redhat.com>2015-03-31 11:25:35 -0500
commit9293fd2bca31a09fe79334d20aa33fa91eecd044 (patch)
treea551d47284bb9e930f813fc57d07251259dd7ee4 /src
parent8009f16ecb4408024e1d793d7aac5d08a31e2399 (diff)
base-manager: quiet message about unsupported ports
This message gets printed for all netdevs and ttys, including most machines normal ethernet/Wi-Fi interfaces. It seems a bit less critical than 'warning' level would indicate. ModemManager[32097]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:19.0': not supported by any plugin ModemManager[32097]: <warn> Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.1/0000:02:00.0': not supported by any plugin
Diffstat (limited to 'src')
-rw-r--r--src/mm-base-manager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mm-base-manager.c b/src/mm-base-manager.c
index 3b9f34d4..fdcd037d 100644
--- a/src/mm-base-manager.c
+++ b/src/mm-base-manager.c
@@ -148,7 +148,7 @@ find_device_support_ready (MMPluginManager *plugin_manager,
GError *error = NULL;
if (!mm_plugin_manager_find_device_support_finish (plugin_manager, result, &error)) {
- mm_warn ("Couldn't find support for device at '%s': %s",
+ mm_info ("Couldn't find support for device at '%s': %s",
mm_device_get_path (ctx->device),
error->message);
g_error_free (error);