]> git.sur5r.net Git - i3/i3/commitdiff
Remove debug message when debugging is disabled
authorLeo Gaspard <ekleog@gmail.com>
Tue, 20 Aug 2013 00:07:31 +0000 (02:07 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 20 Aug 2013 17:06:03 +0000 (19:06 +0200)
More precisely, switch from printf to DLOG a "matching: * / *" message, like all
the other "matching: * / *" messages.

src/commands.c

index 9686dfe4940ce1a55e6191e7a3d3bc26319a4060..f42742462c8fb75a68386d5d6507983b01aa9651 100644 (file)
@@ -1521,7 +1521,7 @@ void cmd_fullscreen(I3_CMD, char *fullscreen_mode) {
     HANDLE_EMPTY_MATCH;
 
     TAILQ_FOREACH(current, &owindows, owindows) {
-        printf("matching: %p / %s\n", current->con, current->con->name);
+        DLOG("matching: %p / %s\n", current->con, current->con->name);
         con_toggle_fullscreen(current->con, (strcmp(fullscreen_mode, "global") == 0 ? CF_GLOBAL : CF_OUTPUT));
     }