diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-20 15:52:18 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-24 21:37:32 -0800 |
commit | 29772ec37293e7fbc6f11cc8a73b5d4d820707c7 (patch) | |
tree | fd760905198beb5c87be93654fb45b1cbecaf3ca /src/helper | |
parent | 8de1e7bd9eb7f5e1db7ea2f4cb03e73f442a1a12 (diff) | |
download | openocd+libswd-29772ec37293e7fbc6f11cc8a73b5d4d820707c7.tar.gz openocd+libswd-29772ec37293e7fbc6f11cc8a73b5d4d820707c7.tar.bz2 openocd+libswd-29772ec37293e7fbc6f11cc8a73b5d4d820707c7.tar.xz openocd+libswd-29772ec37293e7fbc6f11cc8a73b5d4d820707c7.zip |
log: use register_commands()
Use register_commands() for logging callbacks. Improve help and add
proper usage.
Diffstat (limited to 'src/helper')
-rw-r--r-- | src/helper/log.c | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/src/helper/log.c b/src/helper/log.c index b1352a32..3799fb32 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 = "<file_name>", + }, + { + .name = "debug_level", + .handler = &handle_debug_level_command, + .mode = COMMAND_ANY, + .help = "sets the verbosity level of debugging output", + .usage = "<level:0-3>", + }, + 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 <file> (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) |