From 1a5c5452b4efc4d6fb2f882805fc6a0f9a50a2de Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 7 Jun 2005 18:16:14 +0000 Subject: [PATCH] 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 --- src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {