From: Ingo Bürk Date: Sun, 25 Oct 2015 13:25:55 +0000 (+0100) Subject: Fixed logging statement. X-Git-Tag: 4.12~121^2~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ac4ac941819b25243ede6420c8fa8f56b9e3c399;p=i3%2Fi3 Fixed logging statement. Assignments don't necessarily represent workspace assignments, but could also be used, e.g., for no_focus. Hence, there's no point in logging dest.workspace for all assignments. --- diff --git a/src/assignments.c b/src/assignments.c index babe890e..9de50e12 100644 --- a/src/assignments.c +++ b/src/assignments.c @@ -76,7 +76,7 @@ Assignment *assignment_for(i3Window *window, int type) { if ((type != A_ANY && (assignment->type & type) == 0) || !match_matches_window(&(assignment->match), window)) continue; - DLOG("got a matching assignment (to %s)\n", assignment->dest.workspace); + DLOG("got a matching assignment\n"); return assignment; }