diff options
author | Roger Dingledine <arma@torproject.org> | 2005-05-25 02:20:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-05-25 02:20:15 +0000 |
commit | bfc7838b9751130a9a6dd7dc625f34f6a5e7b9ee (patch) | |
tree | 99df60e1dd4261384a11d59bd253aaf5d61c676e /src/or | |
parent | 4f0d7b82ae70b7e5a978549feb8a21d50ed972b2 (diff) | |
download | tor-bfc7838b9751130a9a6dd7dc625f34f6a5e7b9ee.tar.gz tor-bfc7838b9751130a9a6dd7dc625f34f6a5e7b9ee.zip |
downgrade the 'caught sigpipe' notice.
we're going to pretend like all of these are fine.
svn:r4301
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 1af82beeda..f0818c960d 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1024,7 +1024,7 @@ static void signal_callback(int fd, short events, void *arg) break; #ifdef SIGPIPE case SIGPIPE: - log(LOG_NOTICE,"Caught sigpipe. Ignoring."); + log(LOG_DEBUG,"Caught sigpipe. Ignoring."); break; #endif case SIGUSR1: |