From 9983e4eff5b07ed217cf60785039dfeb9fbbfd19 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 17 Apr 2015 15:46:17 +0200 Subject: [PATCH] device/logging: log connection UUID when activating connection It is often hard to understand whether we activate an assumed connection. Only the UUID is unique. --- src/devices/nm-device.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index 2c3ceddd2b..888aa339aa 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -5834,8 +5834,9 @@ _device_activate (NMDevice *self, NMActRequest *req) connection = nm_act_request_get_connection (req); g_assert (connection); - _LOGI (LOGD_DEVICE, "Activation: starting connection '%s'", - nm_connection_get_id (connection)); + _LOGI (LOGD_DEVICE, "Activation: starting connection '%s' (%s)", + nm_connection_get_id (connection), + nm_connection_get_uuid (connection)); delete_on_deactivate_unschedule (self);