mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-07 02:38:08 +02:00
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:
parent
e9b9d9b627
commit
9983e4eff5
1 changed files with 3 additions and 2 deletions
|
|
@ -5834,8 +5834,9 @@ _device_activate (NMDevice *self, NMActRequest *req)
|
||||||
connection = nm_act_request_get_connection (req);
|
connection = nm_act_request_get_connection (req);
|
||||||
g_assert (connection);
|
g_assert (connection);
|
||||||
|
|
||||||
_LOGI (LOGD_DEVICE, "Activation: starting connection '%s'",
|
_LOGI (LOGD_DEVICE, "Activation: starting connection '%s' (%s)",
|
||||||
nm_connection_get_id (connection));
|
nm_connection_get_id (connection),
|
||||||
|
nm_connection_get_uuid (connection));
|
||||||
|
|
||||||
delete_on_deactivate_unschedule (self);
|
delete_on_deactivate_unschedule (self);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue