From c2f361392fe98948bd6a12f89648ca6c445260c1 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 19 Oct 2007 04:43:02 +0000 Subject: [PATCH] 2007-10-19 Dan Williams * src/nm-device.c - (constructor): add message about what path a device is exported as to help in debugging rh #339011 git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2988 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- ChangeLog | 6 ++++++ src/nm-device.c | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 5b6baf4171..78c6521838 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-10-19 Dan Williams + + * src/nm-device.c + - (constructor): add message about what path a device is exported as + to help in debugging rh #339011 + 2007-10-17 Dan Williams * libnm-util/nm-utils.h diff --git a/src/nm-device.c b/src/nm-device.c index a6cca1280c..f7d0d12878 100644 --- a/src/nm-device.c +++ b/src/nm-device.c @@ -190,6 +190,7 @@ constructor (GType type, goto error; } + nm_info ("(%s): exporting device as %s", nm_device_get_iface (dev), nm_device_get_dbus_path (dev)); dbus_g_connection_register_g_object (nm_dbus_manager_get_connection (manager), nm_device_get_dbus_path (dev), object);