From fd2f617be7ff57fcb187daa737f66d243544c8cd Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 27 Mar 2008 09:44:40 -0400 Subject: [PATCH] remove some verbose debug prints --- openbox/hooks.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openbox/hooks.c b/openbox/hooks.c index ad57fdb8..53586db8 100644 --- a/openbox/hooks.c +++ b/openbox/hooks.c @@ -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, -- 2.44.0