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:40:10 +0200
commitb15204d9910702f8912428d4dee873d1d6965cd7 (patch)
tree06c873e18b1fc5ee60e83ec8d83381cc78e3d6bd
parent946c8e21523d1e3b9977fac30a8e5b980c8eac76 (diff)
downloadNetworkManager-b15204d9910702f8912428d4dee873d1d6965cd7.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. (cherry picked from commit 9f1eb190f738369c95a5cd94d3a5ad9ff3027da3)
-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 b9ccaeb3e5..94103c5e62 100644
--- a/src/platform/nm-linux-platform.c
+++ b/src/platform/nm-linux-platform.c
@@ -2398,13 +2398,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;