FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

fix: duplicate gunicorn logs and improved gunicorn log structure

Merged E. Kirk requested to merge issue-7-fix-faas-logging into issue-7-fix-gunicorn
Compare and
3 files
+ 119
17
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 3
3
@@ -2,9 +2,9 @@ import structlog
from .logging_config import configure_logging
configure_logging()
def get_structlog_logger(*args, **kwargs):
configure_logging()
def get_structlog_logger(name):
"""Get a logger with the specified name."""
return structlog.get_logger(name)
return structlog.get_logger(*args, **kwargs)
Loading