aboutsummaryrefslogtreecommitdiff
path: root/src/helper
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2019-03-30 08:47:38 +0100
committerTomas Vanek <vanekt@fbl.cz>2019-04-10 16:35:41 +0100
commit6f04bc1568445052b7135b801366c327786a3efe (patch)
tree9db171cba54cd982e8f27938095c5e7f96a771a5 /src/helper
parent38d053d11b507cc762dc99ec7882d15d755f6c41 (diff)
downloadriscv-openocd-6f04bc1568445052b7135b801366c327786a3efe.zip
riscv-openocd-6f04bc1568445052b7135b801366c327786a3efe.tar.gz
riscv-openocd-6f04bc1568445052b7135b801366c327786a3efe.tar.bz2
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 <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5026 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/helper')
-rw-r--r--src/helper/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/command.c b/src/helper/command.c
index ec66c2d..aadc072 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 ? " " : "",