summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-06-07 18:16:14 +0000
committerRoger Dingledine <arma@torproject.org>2005-06-07 18:16:14 +0000
commit1a5c5452b4efc4d6fb2f882805fc6a0f9a50a2de (patch)
tree008a90a3230cb8ca85d5825ab2b84b44ba4a8cbe
parent621ab95e59f40119e17f76cfc3587eecceb3784b (diff)
downloadtor-1a5c5452b4efc4d6fb2f882805fc6a0f9a50a2de.tar.gz
tor-1a5c5452b4efc4d6fb2f882805fc6a0f9a50a2de.zip
when you send a USR2 signal, the log message now tells you to send
a HUP signal if you want to change back to old log levels. svn:r4332
-rw-r--r--src/or/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c
index a812b725d0..319358a9ba 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -1033,7 +1033,7 @@ static void signal_callback(int fd, short events, void *arg)
break;
case SIGUSR2:
switch_logs_debug();
- log(LOG_NOTICE,"Caught USR2. Going to loglevel debug.");
+ log(LOG_NOTICE,"Caught USR2, going to loglevel debug. Send HUP to change back.");
break;
case SIGHUP:
if (do_hup() < 0) {