]> Dogcows Code - chaz/openbox/blobdiff - openbox/hooks.c
remove some verbose debug prints
[chaz/openbox] / openbox / hooks.c
index ad57fdb8d469d2e25673656e4535edbed073c4c7..53586db8ad3f919aa76c946304f260ab51afa70e 100644 (file)
@@ -73,8 +73,8 @@ void hooks_queue(ObHook hook, struct _ObClient *client)
 
     g_assert(hook < OB_NUM_HOOKS && hook > OB_HOOK_INVALID);
 
-    ob_debug("Queing hook %s for client 0x%x", names[hook],
-             (client ? client->window : 0));
+    //ob_debug("Queing hook %s for client 0x%x", names[hook],
+    //         (client ? client->window : 0));
     q = &run_queue[queue_size++];
     q->hook = hook;
     q->client = client;
@@ -106,8 +106,8 @@ void hooks_run_queue(void)
     for (i = 0; i < queue_size; ++i) {
         const ObHookQueue *q = &run_queue[i];
 
-        ob_debug("Running hook %s for client 0x%x", names[q->hook],
-                 (q->client ? q->client->window : 0));
+        //ob_debug("Running hook %s for client 0x%x", names[q->hook],
+        //         (q->client ? q->client->window : 0));
         actions_run_acts(hooks[q->hook],
                          OB_USER_ACTION_HOOK,
                          0, -1, -1, 0,
This page took 0.022595 seconds and 4 git commands to generate.