diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-01-08 11:40:23 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-01-08 11:40:23 +0000 |
commit | 55c042d6049e70b8d3d847b95bf2f8ce7573a5fd (patch) | |
tree | ef3bcdb55017cbf060bfee158df7c8e461841fd4 /src/common/weeconfig.c | |
parent | 6d3c24361d8efc5b14e6b6cf1aba13d294b32078 (diff) | |
download | weechat-55c042d6049e70b8d3d847b95bf2f8ce7573a5fd.zip |
Logs are now disabled by default (server/channel/private)
Diffstat (limited to 'src/common/weeconfig.c')
-rw-r--r-- | src/common/weeconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 0051ad970..c57d20b74 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -429,15 +429,15 @@ int cfg_log_hide_nickserv_pwd; t_config_option weechat_options_log[] = { { "log_auto_server", N_("automatically log server messages"), N_("automatically log server messages"), - OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_TRUE, + OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_FALSE, NULL, NULL, &cfg_log_auto_server, NULL, NULL }, { "log_auto_channel", N_("automatically log channel chats"), N_("automatically log channel chats"), - OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_TRUE, + OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_FALSE, NULL, NULL, &cfg_log_auto_channel, NULL, NULL }, { "log_auto_private", N_("automatically log private chats"), N_("automatically log private chats"), - OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_TRUE, + OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_FALSE, NULL, NULL, &cfg_log_auto_private, NULL, NULL }, { "log_path", N_("path for log files"), N_("path for WeeChat log files"), |