Added missing newlines in log statements.

This commit is contained in:
Ingo Bürk
2015-06-30 20:48:35 +02:00
parent 8df7e4ecb9
commit 94a09b3cac
12 changed files with 22 additions and 22 deletions

View File

@ -372,7 +372,7 @@ CFGFUN(focus_on_window_activation, const char *mode) {
return;
}
DLOG("Set new focus_on_window_activation mode = %i", config.focus_on_window_activation);
DLOG("Set new focus_on_window_activation mode = %i.\n", config.focus_on_window_activation);
}
CFGFUN(show_marks, const char *value) {
@ -452,7 +452,7 @@ CFGFUN(assign, const char *workspace) {
ELOG("Match is empty, ignoring this assignment\n");
return;
}
DLOG("new assignment, using above criteria, to workspace %s\n", workspace);
DLOG("New assignment, using above criteria, to workspace \"%s\".\n", workspace);
Assignment *assignment = scalloc(sizeof(Assignment));
match_copy(&(assignment->match), current_match);
assignment->type = A_TO_WORKSPACE;
@ -466,7 +466,7 @@ CFGFUN(no_focus) {
return;
}
DLOG("new assignment, using above criteria, to ignore focus on manage");
DLOG("New assignment, using above criteria, to ignore focus on manage.\n");
Assignment *assignment = scalloc(sizeof(Assignment));
match_copy(&(assignment->match), current_match);
assignment->type = A_NO_FOCUS;