diff options
author | Roger Dingledine <arma@torproject.org> | 2003-11-19 22:48:48 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-11-19 22:48:48 +0000 |
commit | 91cf5e44cccf20a5db7dc22b45d86400bc872e4b (patch) | |
tree | f827643a02312662b071ea64163e819fbb79527d /src/or/config.c | |
parent | b820d3bc425e6a7d0b7b5adaa3c4b2541183feb4 (diff) | |
download | tor-91cf5e44cccf20a5db7dc22b45d86400bc872e4b.tar tor-91cf5e44cccf20a5db7dc22b45d86400bc872e4b.tar.gz |
default log level is now warn
(info is too noisy)
svn:r855
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 0c955f172..423fa4045 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -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:*"); |