From: Michael Stapelberg Date: Sun, 3 Jan 2010 20:54:47 +0000 (+0100) Subject: Use DLOG instead of LOG, remove unnecessary debug statement X-Git-Tag: 3.e~6^2~171 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7b2363776ae6edad0e2a0294c5cc5318c72c7376;p=i3%2Fi3 Use DLOG instead of LOG, remove unnecessary debug statement --- diff --git a/src/sighandler.c b/src/sighandler.c index 4b784041..5518daf1 100644 --- a/src/sighandler.c +++ b/src/sighandler.c @@ -87,7 +87,7 @@ static int sig_handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_p xcb_keysym_t sym = xcb_key_press_lookup_keysym(keysyms, event, event->state); if (sym == 'e') { - LOG("User issued exit-command, raising error again.\n"); + DLOG("User issued exit-command, raising error again.\n"); raise(raised_signal); exit(1); } @@ -146,7 +146,7 @@ static xcb_window_t open_input_window(xcb_connection_t *conn, Rect screen_rect, * */ void handle_signal(int sig, siginfo_t *info, void *data) { - LOG("i3 crashed. SIG: %d\n", sig); + DLOG("i3 crashed. SIG: %d\n", sig); struct sigaction action; action.sa_handler = SIG_DFL; @@ -177,8 +177,6 @@ void handle_signal(int sig, siginfo_t *info, void *data) { i3Screen *screen; xcb_window_t win; TAILQ_FOREACH(screen, virtual_screens, screens) { - LOG("%d, %d, %d, %d\n", screen->rect.width, screen->rect.height, screen->rect.x, screen->rect.y); - win = open_input_window(conn, screen->rect, width, height); /* Create pixmap */