From 516d69933e5b7a3f462918a6039cd59009a062f7 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 25 Sep 2007 08:06:11 +0000 Subject: [PATCH] Quiet some debug statements git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2876 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- src/nm-hal-manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nm-hal-manager.c b/src/nm-hal-manager.c index caa23a0475..d69f395299 100644 --- a/src/nm-hal-manager.c +++ b/src/nm-hal-manager.c @@ -224,7 +224,7 @@ device_added (LibHalContext *ctx, const char *udi) NMHalManager *manager = (NMHalManager *) libhal_ctx_get_user_data (ctx); NMDeviceCreatorFn creator_fn; - nm_debug ("New device added (hal udi is '%s').", udi ); +// nm_debug ("New device added (hal udi is '%s').", udi ); /* Sometimes the device's properties (like net.interface) are not set up yet, * so this call will fail, and it will actually be added when hal sets the device's @@ -241,7 +241,7 @@ device_removed (LibHalContext *ctx, const char *udi) NMHalManager *manager = (NMHalManager *) libhal_ctx_get_user_data (ctx); NMDevice *dev; - nm_debug ("Device removed (hal udi is '%s').", udi ); +// nm_debug ("Device removed (hal udi is '%s').", udi ); if ((dev = nm_manager_get_device_by_udi (manager->nm_manager, udi))) nm_manager_remove_device (manager->nm_manager, dev);