aboutsummaryrefslogtreecommitdiffstats
path: root/main/logger.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 23:00:20 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 23:00:20 +0000
commitc771976500a03e9be6ca67f3c3ccc31f6c32f232 (patch)
tree52931b68b54d2adc957438ad058cf1971c3b02c4 /main/logger.c
parent2191f5490fdb07dc7cbf6772dbf9e946e081e4c4 (diff)
Reverse change of "show" to "list" and make several other commands more consistent with "category verb arguments"
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47051 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/main/logger.c b/main/logger.c
index 12c37a83b..2eaa04a8f 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -554,18 +554,13 @@ static char logger_rotate_help[] =
" Rotates and Reopens the log files.\n";
static char logger_show_channels_help[] =
-"Usage: logger list channels\n"
+"Usage: logger show channels\n"
" List configured logger channels.\n";
-static struct ast_cli_entry cli_logger_show_channels_deprecated = {
- { "logger", "show", "channels", NULL },
- handle_logger_show_channels, NULL,
- NULL };
-
static struct ast_cli_entry cli_logger[] = {
- { { "logger", "list", "channels", NULL },
+ { { "logger", "show", "channels", NULL },
handle_logger_show_channels, "List configured log channels",
- logger_show_channels_help, NULL, &cli_logger_show_channels_deprecated },
+ logger_show_channels_help },
{ { "logger", "reload", NULL },
handle_logger_reload, "Reopens the log files",