소스 검색

Update supervisord.py

Changed priority of error message for reaping an unknown pid from critical to info.
hansthen 10 년 전
부모
커밋
a9cfada090
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      supervisor/supervisord.py

+ 1 - 1
supervisor/supervisord.py

@@ -283,7 +283,7 @@ class Supervisor:
         if pid:
             process = self.options.pidhistory.get(pid, None)
             if process is None:
-                self.options.logger.critical('reaped unknown pid %s' % pid)
+                self.options.logger.info('reaped unknown pid %s' % pid)
             else:
                 process.finish(pid, sts)
                 del self.options.pidhistory[pid]