Pārlūkot izejas kodu

make the initial temp log only notice-err, not info-err

svn:r3274
Roger Dingledine 21 gadi atpakaļ
vecāks
revīzija
1f3e77bf92
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/common/log.c

+ 1 - 1
src/common/log.c

@@ -337,7 +337,7 @@ void add_stream_log(int loglevelMin, int loglevelMax, const char *name, FILE *st
  */
 void add_temp_log(void)
 {
-  add_stream_log(LOG_INFO, LOG_ERR, "<temp>", stdout);
+  add_stream_log(LOG_NOTICE, LOG_ERR, "<temp>", stdout);
   logfiles->is_temporary = 1;
 }