summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-10-09 15:38:09 +0200
committerThomas Haller <thaller@redhat.com>2015-10-09 15:38:41 +0200
commit9f1eb190f738369c95a5cd94d3a5ad9ff3027da3 (patch)
tree3a9aeb1b559cf3864150aabfe6d14ae3f6bf665e
parentc71c301c3b34092d8bdac3cec11f85c4fc737143 (diff)
downloadNetworkManager-9f1eb190f738369c95a5cd94d3a5ad9ff3027da3.tar.gz
platform: downgrade logging level for "event-notification" messages
We get a lot of these debugging message, although the event is entirely internal to NMLinuxPlatform and only interesting when debugging a problem in platform itself. Downgrade to TRACE level.
-rw-r--r--src/platform/nm-linux-platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c
index 76d74da0bd..bf0df38d8b 100644
--- a/src/platform/nm-linux-platform.c
+++ b/src/platform/nm-linux-platform.c
@@ -2396,13 +2396,13 @@ event_notification (struct nl_msg *msg, gpointer user_data)
/* The event notifies about a deleted object. We don't need to initialize all the
* fields of the nmp-object. Shortcut nmp_object_from_nl(). */
obj = nmp_object_from_nl (platform, nlo, TRUE, TRUE);
- _LOGD ("event-notification: %s, seq %u: %s",
+ _LOGt ("event-notification: %s, seq %u: %s",
_nl_nlmsg_type_to_str (msghdr->nlmsg_type, buf_nlmsg_type, sizeof (buf_nlmsg_type)),
msghdr->nlmsg_seq, nmp_object_to_string (obj, NMP_OBJECT_TO_STRING_ID, NULL, 0));
break;
default:
obj = nmp_object_from_nl (platform, nlo, FALSE, TRUE);
- _LOGD ("event-notification: %s, seq %u: %s",
+ _LOGt ("event-notification: %s, seq %u: %s",
_nl_nlmsg_type_to_str (msghdr->nlmsg_type, buf_nlmsg_type, sizeof (buf_nlmsg_type)),
msghdr->nlmsg_seq, nmp_object_to_string (obj, NMP_OBJECT_TO_STRING_PUBLIC, NULL, 0));
break;