From 8a5910c25cd0102d36a9adbb7a2c831e4fa5e046 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 23 Apr 2015 13:39:17 -0500 Subject: [PATCH] core: change activation failure messages to debug level Otherwise any user with network control privileges can spam the logs. --- src/nm-manager.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/nm-manager.c b/src/nm-manager.c index 25f463ad3f..0bf66ab767 100644 --- a/src/nm-manager.c +++ b/src/nm-manager.c @@ -2971,9 +2971,9 @@ _internal_activation_failed (NMManager *self, NMActiveConnection *active, const char *error_desc) { - nm_log_warn (LOGD_CORE, "Failed to activate '%s': %s", - nm_connection_get_id (nm_active_connection_get_connection (active)), - error_desc); + nm_log_dbg (LOGD_CORE, "Failed to activate '%s': %s", + nm_connection_get_id (nm_active_connection_get_connection (active)), + error_desc); if (nm_active_connection_get_state (active) <= NM_ACTIVE_CONNECTION_STATE_ACTIVATED) { nm_active_connection_set_state (active, NM_ACTIVE_CONNECTION_STATE_DEACTIVATING);