Explorar o código

emergency_error() now tries to use sys.stderr if no logfile.

Ask Solem %!s(int64=16) %!d(string=hai) anos
pai
achega
6731699c93
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      celery/log.py

+ 3 - 0
celery/log.py

@@ -1,5 +1,6 @@
 import multiprocessing
 import os
+import sys
 import time
 import logging
 from celery.conf import LOG_FORMAT, DAEMON_LOG_LEVEL
@@ -32,6 +33,8 @@ def emergency_error(logfile, message):
     descriptors open because the process has been daemonized or for
     some other reason."""
     logfh_needs_to_close = False
+    if not logfile:
+        logfile = sys.stderr
     if hasattr(logfile, "write"):
         logfh = logfile
     else: