Browse Source

Only report sigchild receipt in debug mode.

Chris McDonough 19 years ago
parent
commit
2efe19209a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/supervisor/supervisord.py

+ 1 - 1
src/supervisor/supervisord.py

@@ -750,7 +750,7 @@ class Supervisor:
 
 
     def sigchild(self, sig, frame):
     def sigchild(self, sig, frame):
         # do nothing here, we reap our children synchronously
         # do nothing here, we reap our children synchronously
-        self.options.logger.info('received %s' % signame(sig))
+        self.options.logger.debug('received %s' % signame(sig))
 
 
     def daemonize(self):
     def daemonize(self):