Remove debug message when debugging is disabled
More precisely, switch from printf to DLOG a "matching: * / *" message, like all the other "matching: * / *" messages.
This commit is contained in:
parent
a5ee699d36
commit
c9611b320b
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue