Logging stuff
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2021-08-09 15:48:19 +02:00
parent fc4f8b9d79
commit 01d7c76cff
2 changed files with 21 additions and 2 deletions

View File

@ -48,3 +48,20 @@ app.add_url_rule("/healthz", "healthcheck", view_func=lambda: health.run())
# start debugging if needed
if __name__ == "__main__":
app.run(debug=True)
else:
import os
if "gunicorn" in os.environ.get("SERVER_SOFTWARE", ""):
import logging
gunicorn_logger = logging.getLogger('gunicorn.error')
app.logger.handlers = gunicorn_logger.handlers
app.logger.setLevel(gunicorn_logger.level)
jaeger_logger = logging.getLogger('jaeger_tracing')
jaeger_logger.handlers = gunicorn_logger.handlers
jaeger_logger.setLevel(gunicorn_logger.level)
app.logger.info("Gunicorn environment detected!")
else:
app.logger.info("Not gunicorn")