Skip to content

Commit

Permalink
Remove redundant gunicorn option --log-file -
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Ed Morley committed Jun 6, 2016
1 parent ae95c67 commit 7842b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: gunicorn {{ project_name }}.wsgi --log-file -
web: gunicorn {{ project_name }}.wsgi

0 comments on commit 7842b1e

Please sign in to comment.