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.
This commit is contained in:
Ingo Bürk 2015-10-25 14:25:55 +01:00 committed by Michael Stapelberg
parent 7c75d61a39
commit 0aa8d05b54
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}