From 4879005cc1dbf241fc8168cc0229eee009c7f8d5 Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Mon, 22 Aug 2011 00:08:34 -0700 Subject: [PATCH] backwards-compatible support for --error-logfile --- gunicorn/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index aa494bda..66f960fb 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -567,7 +567,7 @@ class AccessLog(Setting): class ErrorLog(Setting): name = "errorlog" section = "Logging" - cli = ["--error-logfile"] + cli = ["--error-logfile", "--log-file"] meta = "FILE" validator = validate_string default = "-"