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.
This commit is contained in:
Thomas Haller 2015-04-17 15:46:17 +02:00
parent e9b9d9b627
commit 9983e4eff5

View file

@ -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);