فهرست منبع

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]