소스 검색

default log level is now warn
(info is too noisy)


svn:r855

Roger Dingledine 20 년 전
부모
커밋
91cf5e44cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/or/config.c

+ 1 - 1
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:*");