summaryrefslogtreecommitdiff
path: root/nsm-dummy
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-07-26 13:43:15 +0100
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-07-26 13:45:32 +0100
commitc3a06f767cfb530dc638d0c6c0bfc66295c3832b (patch)
tree0bbd5185cd16a0b7718a2f93e813b26db0c3cf45 /nsm-dummy
parente0f4fbfe118840c81d9464dc651bc2be38427718 (diff)
downloadnode-startup-controller-c3a06f767cfb530dc638d0c6c0bfc66295c3832b.tar.gz
Remove debugging output we no longer need
Diffstat (limited to 'nsm-dummy')
-rw-r--r--nsm-dummy/nsm-consumer-service.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/nsm-dummy/nsm-consumer-service.c b/nsm-dummy/nsm-consumer-service.c
index 22b1ea3..c7ead50 100644
--- a/nsm-dummy/nsm-consumer-service.c
+++ b/nsm-dummy/nsm-consumer-service.c
@@ -240,10 +240,6 @@ nsm_consumer_service_handle_register_shutdown_client (NSMConsumer *obj
current_bus_name = shutdown_client_get_bus_name (current_client);
current_object_path = shutdown_client_get_object_path (current_client);
- g_debug ("compare %s <=> %s and %s <=> %s",
- current_bus_name, bus_name,
- current_object_path, object_path);
-
if (g_strcmp0 (current_bus_name, bus_name) == 0
&& g_strcmp0 (current_object_path, object_path) == 0)
{
@@ -254,8 +250,6 @@ nsm_consumer_service_handle_register_shutdown_client (NSMConsumer *obj
/* check if we already have this shutdown client registered */
if (shutdown_client != NULL)
{
- g_debug ("reregistration");
-
/* update the client's shutdown mode */
current_shutdown_mode = shutdown_client_get_shutdown_mode (shutdown_client);
shutdown_client_set_shutdown_mode (shutdown_client,
@@ -277,8 +271,6 @@ nsm_consumer_service_handle_register_shutdown_client (NSMConsumer *obj
}
else
{
- g_debug ("new registration");
-
/* this is a new registration, create a proxy for this new shutdown consumer */
consumer = shutdown_consumer_proxy_new_sync (service->connection,
G_DBUS_PROXY_FLAGS_NONE,