diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a0dabcf..16b78966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to - ✨(frontend) add 1080p sending resolution option #1660 - ✨(backend) add Traefik support via configurable media-auth url header #1649 - ✨(backend) update a room's attributes from the external API +- 🔊(backend) log request duration in Gunicorn workers ### Changed diff --git a/docker/files/usr/local/etc/gunicorn/meet.py b/docker/files/usr/local/etc/gunicorn/meet.py index 6de40804..e1386a53 100644 --- a/docker/files/usr/local/etc/gunicorn/meet.py +++ b/docker/files/usr/local/etc/gunicorn/meet.py @@ -14,3 +14,4 @@ accesslog = "-" # Using '-' for the error log file makes gunicorn log errors to stderr errorlog = "-" loglevel = "info" +access_log_format = '%(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s" %(M)s'