From 0aa8d05b5476caca4047f1a9c59b0d55ccd64782 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ingo=20B=C3=BCrk?= Date: Sun, 25 Oct 2015 14:25:55 +0100 Subject: [PATCH] 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. --- src/assignments.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2