diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-09 18:45:07 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-09 18:45:07 +0100 |
commit | 0be8e0828aa0629f1306d0f603042b15c58fb235 (patch) | |
tree | ab4451aff5c0cc4648692ba91839ae84b2adcc8c /src | |
parent | 3cdecb08a2f543831443914eec10f7447009fda5 (diff) | |
download | weechat-0be8e0828aa0629f1306d0f603042b15c58fb235.zip |
logger: add note on buffer local variables to use in /help logger.file.mask
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/logger/logger-config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/logger/logger-config.c b/src/plugins/logger/logger-config.c index 49d28e0f1..f91f7887b 100644 --- a/src/plugins/logger/logger-config.c +++ b/src/plugins/logger/logger-config.c @@ -445,7 +445,9 @@ logger_config_init () N_("default file name mask for log files (format is " "\"directory/to/file\" or \"file\", without first \"/\" because " "\"path\" option is used to build complete path to file); local " - "buffer variables are permitted; date specifiers are permitted " + "buffer variables are permitted (you should use only variables " + "that are defined on all buffers, so for example you should NOT " + "use $server nor $channel); date specifiers are permitted " "(see man strftime)"), NULL, 0, 0, "$plugin.$name.weechatlog", NULL, 0, NULL, NULL, &logger_config_change_file_option_restart_log, NULL, NULL, NULL); |