소스 검색

Only report sigchild receipt in debug mode.

Chris McDonough 19 년 전
부모
커밋
2efe19209a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/supervisor/supervisord.py

+ 1 - 1
src/supervisor/supervisord.py

@@ -750,7 +750,7 @@ class Supervisor:
 
     def sigchild(self, sig, frame):
         # 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):