Skip to content

Commit

Permalink
Merge pull request #2823 from Roffild/patch-1
Browse files Browse the repository at this point in the history
fix LevelLog in Arbiter.run()
  • Loading branch information
benoitc committed Aug 6, 2022
2 parents d7cfc37 + 4dff334 commit 4bb9090
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gunicorn/arbiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ def run(self):
except SystemExit:
raise
except Exception:
self.log.info("Unhandled exception in main loop",
exc_info=True)
self.log.error("Unhandled exception in main loop",
exc_info=True)
self.stop(False)
if self.pidfile is not None:
self.pidfile.unlink()
Expand Down

0 comments on commit 4bb9090

Please sign in to comment.