diff options
author | Roger Dingledine <arma@torproject.org> | 2005-01-04 02:25:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-01-04 02:25:18 +0000 |
commit | 1f3e77bf92cda37e1123bc5e0c28d411c2036be6 (patch) | |
tree | 0d226e40be656b956906d3aafee1f45279d2befd | |
parent | 82c5381ecb2237326a4e6ccae37413754368387e (diff) | |
download | tor-1f3e77bf92cda37e1123bc5e0c28d411c2036be6.tar.gz tor-1f3e77bf92cda37e1123bc5e0c28d411c2036be6.zip |
make the initial temp log only notice-err, not info-err
svn:r3274
-rw-r--r-- | src/common/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c index 2b0c2cc65a..13a012f678 100644 --- a/src/common/log.c +++ b/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; } |