diff --git a/ChangeLog b/ChangeLog index 9b2f4b1bd..f1b4092cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ WeeChat - Wee Enhanced Environment for Chat =========================================== -ChangeLog - 2005-01-06 +ChangeLog - 2005-01-08 Version 0.1.0 (under dev!): @@ -13,6 +13,7 @@ Version 0.1.0 (under dev!): * server messages & errors are all prefixed (by 3 chars, like '-@-') * added new options for charset: look_charset_decode and look_charset_encode * fixed /away command (now ok if not away) + * logs are now disabled by default (server/channel/private) Version 0.0.9 (2005-01-01): * auto-reconnection to server (new options: server_autoreconnect (on/off), 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"), diff --git a/weechat/ChangeLog b/weechat/ChangeLog index 9b2f4b1bd..f1b4092cf 100644 --- a/weechat/ChangeLog +++ b/weechat/ChangeLog @@ -1,7 +1,7 @@ WeeChat - Wee Enhanced Environment for Chat =========================================== -ChangeLog - 2005-01-06 +ChangeLog - 2005-01-08 Version 0.1.0 (under dev!): @@ -13,6 +13,7 @@ Version 0.1.0 (under dev!): * server messages & errors are all prefixed (by 3 chars, like '-@-') * added new options for charset: look_charset_decode and look_charset_encode * fixed /away command (now ok if not away) + * logs are now disabled by default (server/channel/private) Version 0.0.9 (2005-01-01): * auto-reconnection to server (new options: server_autoreconnect (on/off), diff --git a/weechat/src/common/weeconfig.c b/weechat/src/common/weeconfig.c index 0051ad970..c57d20b74 100644 --- a/weechat/src/common/weeconfig.c +++ b/weechat/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"),