From: Antonio Borneo Date: Sat, 30 Mar 2019 07:47:38 +0000 (+0100) Subject: helper/command: log an error for commands without usage X-Git-Tag: v0.11.0-rc1~737 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6f04bc1568445052b7135b801366c327786a3efe helper/command: log an error for commands without usage Every command has been fixed with proper usage field. Change LOG_DEBUG with LOG_ERROR so a developer will get a visible alert for missing usage field when adds a new command. Change-Id: I077c3745fd6265aded8e54b3f9d202d4d6516966 Signed-off-by: Antonio Borneo Reviewed-on: http://openocd.zylin.com/5026 Tested-by: jenkins Reviewed-by: Tomas Vanek --- diff --git a/src/helper/command.c b/src/helper/command.c index ec66c2d298..aadc072fa0 100644 --- a/src/helper/command.c +++ b/src/helper/command.c @@ -316,7 +316,7 @@ static struct command *command_new(struct command_context *cmd_ctx, * arguments. */ if ((cr->jim_handler == NULL) && (cr->usage == NULL)) { - LOG_DEBUG("BUG: command '%s%s%s' does not have the " + LOG_ERROR("BUG: command '%s%s%s' does not have the " "'.usage' field filled out", parent && parent->name ? parent->name : "", parent && parent->name ? " " : "",