default log level is now warn

(info is too noisy)


svn:r855
This commit is contained in:
Roger Dingledine 2003-11-19 22:48:48 +00:00
parent b820d3bc42
commit 91cf5e44cc

View File

@ -250,7 +250,7 @@ void free_options(or_options_t *options) {
void init_options(or_options_t *options) {
/* give reasonable values for each option. Defaults to zero. */
memset(options,0,sizeof(or_options_t));
options->LogLevel = tor_strdup("info");
options->LogLevel = tor_strdup("warn");
options->ExitNodes = tor_strdup("");
options->EntryNodes = tor_strdup("");
options->ExitPolicy = tor_strdup("reject 127.0.0.1:*");