From: Zachary T Welch Date: Fri, 20 Nov 2009 23:52:18 +0000 (-0800) Subject: log: use register_commands() X-Git-Tag: v0.4.0-rc1~398 X-Git-Url: https://review.openocd.org/gitweb?a=commitdiff_plain;h=29772ec37293e7fbc6f11cc8a73b5d4d820707c7;p=openocd.git log: use register_commands() Use register_commands() for logging callbacks. Improve help and add proper usage. --- diff --git a/src/helper/log.c b/src/helper/log.c index b1352a3241..3799fb322b 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -316,15 +316,29 @@ COMMAND_HANDLER(handle_log_output_command) return ERROR_OK; } +static struct command_registration log_command_handlers[] = { + { + .name = "log_output", + .handler = &handle_log_output_command, + .mode = COMMAND_ANY, + .help = "redirect logging to a file (default: stderr)", + .usage = "", + }, + { + .name = "debug_level", + .handler = &handle_debug_level_command, + .mode = COMMAND_ANY, + .help = "sets the verbosity level of debugging output", + .usage = "", + }, + COMMAND_REGISTRATION_DONE +}; + int log_register_commands(struct command_context *cmd_ctx) { start = timeval_ms(); - COMMAND_REGISTER(cmd_ctx, NULL, "log_output", handle_log_output_command, - COMMAND_ANY, "redirect logging to (default: stderr)"); - COMMAND_REGISTER(cmd_ctx, NULL, "debug_level", handle_debug_level_command, - COMMAND_ANY, "adjust debug level <0-3>"); - return ERROR_OK; + return register_commands(cmd_ctx, NULL, log_command_handlers); } int log_init(struct command_context *cmd_ctx)