Skip to content

Commit 4bb9090

Browse files
authored
Merge pull request benoitc#2823 from Roffild/patch-1
fix LevelLog in Arbiter.run()
2 parents d7cfc37 + 4dff334 commit 4bb9090

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gunicorn/arbiter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ def run(self):
230230
except SystemExit:
231231
raise
232232
except Exception:
233-
self.log.info("Unhandled exception in main loop",
234-
exc_info=True)
233+
self.log.error("Unhandled exception in main loop",
234+
exc_info=True)
235235
self.stop(False)
236236
if self.pidfile is not None:
237237
self.pidfile.unlink()

0 commit comments

Comments
 (0)