From 7842b1eee37210ecf43a8919dc014c89f8dca925 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Mon, 6 Jun 2016 13:49:17 +0100 Subject: [PATCH] Remove redundant gunicorn option `--log-file -` The `--log-file` option was renamed to `--error-logfile` in gunicorn v0.13.0. However since gunicorn v19.2 it now defaults to `-` (stderr), so can be omitted entirely: http://docs.gunicorn.org/en/latest/settings.html#errorlog --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 9bf90104..b3e89363 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: gunicorn {{ project_name }}.wsgi --log-file - \ No newline at end of file +web: gunicorn {{ project_name }}.wsgi