Skip to content

Commit

Permalink
Change Procfile to log to console
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrinberg committed Aug 18, 2016
1 parent 8bba6aa commit 7a6ce14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: gunicorn -w 4 -b 0.0.0.0:$PORT app:app
web: gunicorn -w 4 -b 0.0.0.0:$PORT --log-file=- app:app
1 change: 1 addition & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import requests
import xmltodict
import logging

from logging.handlers import SMTPHandler
from dotenv import load_dotenv
from raven.contrib.flask import Sentry
Expand Down

0 comments on commit 7a6ce14

Please sign in to comment.