aboutsummaryrefslogtreecommitdiff
path: root/src/helper/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helper/command.c')
-rw-r--r--src/helper/command.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index 48d998f..1ff4e01 100644
--- a/src/helper/command.c
+++ b/src/helper/command.c
@@ -642,7 +642,10 @@ static int run_command(struct command_context *context,
/* we do not print out an error message because the command *should*
* have printed out an error
*/
- LOG_DEBUG("Command '%s' failed with error code %d", c->name, retval);
+ char *full_name = command_name(c, ' ');
+ LOG_DEBUG("Command '%s' failed with error code %d",
+ full_name ? full_name : c->name, retval);
+ free(full_name);
}
return retval;