Add config path to error msg

This commit is contained in:
Mikkel Oscar Lyderik 2016-03-26 16:50:47 +01:00
parent b5f34cc27d
commit 44ea92ea60
1 changed files with 2 additions and 2 deletions

View File

@ -407,8 +407,8 @@ bool read_config(FILE *file, struct sway_config *config) {
switch(res->status) {
case CMD_FAILURE:
case CMD_INVALID:
sway_log(L_ERROR, "Error on line %i '%s': %s", line_number, line,
res->error);
sway_log(L_ERROR, "Error on line %i '%s': %s (%s)", line_number, line,
res->error, config->current_config);
success = false;
break;