about summary refs log tree commit diff stats
path: root/src/command/command.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-04-13 22:20:15 +0100
committerJames Booth <boothj5@gmail.com>2014-04-13 22:20:15 +0100
commit67a109927cbb70f48198f4516c330c157bfc209a (patch)
tree53681754ec1993f0e1128d2373084a5ff09f450c /src/command/command.c
parentc3418a290959a6b128c6224ccd01562850ae98c0 (diff)
downloadprofani-tty-67a109927cbb70f48198f4516c330c157bfc209a.tar.gz
Added /log where command
Diffstat (limited to 'src/command/command.c')
-rw-r--r--src/command/command.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/command/command.c b/src/command/command.c
index 240a4ad6..5175a16b 100644
--- a/src/command/command.c
+++ b/src/command/command.c
@@ -639,10 +639,11 @@ static struct cmd_t command_defs[] =
           NULL } } },
 
     { "/log",
-        cmd_log, parse_args, 2, 2, &cons_log_setting,
+        cmd_log, parse_args, 1, 2, &cons_log_setting,
         { "/log [property] [value]", "Manage system logging settings.",
         { "/log [property] [value]",
           "-----------------------",
+          "where   : Show the current log file location.",
           "Property may be one of:",
           "rotate  : Rotate log, accepts 'on' or 'off', defaults to 'on'.",
           "maxsize : With rotate enabled, specifies the max log size, defaults to 1048580 (1MB).",
@@ -955,6 +956,7 @@ cmd_init(void)
     autocomplete_add(log_ac, "maxsize");
     autocomplete_add(log_ac, "rotate");
     autocomplete_add(log_ac, "shared");
+    autocomplete_add(log_ac, "where");
 
     autoaway_ac = autocomplete_new();
     autocomplete_add(autoaway_ac, "mode");