Added missing newlines in log statements.
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user