Merge pull request #2823 from Roffild/patch-1

fix LevelLog in Arbiter.run()
This commit is contained in:
Benoit Chesneau 2022-08-06 18:32:38 +02:00 committed by GitHub
commit 4bb9090a2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,8 +230,8 @@ class Arbiter(object):
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()