]> git.sur5r.net Git - i3/i3/commitdiff
Use DLOG instead of LOG, remove unnecessary debug statement
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 3 Jan 2010 20:54:47 +0000 (21:54 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 3 Jan 2010 20:54:47 +0000 (21:54 +0100)
src/sighandler.c

index 4b7840415f5170af37dd28c1d3596334a4d09da1..5518daf141732b829a244a78188a01d5d7e7807a 100644 (file)
@@ -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 */