diff options
author | 2018-03-10 19:13:21 +0000 | |
---|---|---|
committer | 2018-03-10 19:13:21 +0000 | |
commit | 4075de4b1ee11d0085081316488e6d9dd5f907b4 (patch) | |
tree | f281d67326daf1993cb1c4df39d1a5259e50abcf /pysite/constants.py | |
parent | removes gunicorn config as it is no longer being used (#39) (diff) |
Logging with Papertrail
Diffstat (limited to 'pysite/constants.py')
-rw-r--r-- | pysite/constants.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pysite/constants.py b/pysite/constants.py index 316d550f..d9b87cb6 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -1,6 +1,7 @@ # coding=utf-8 from enum import Enum, IntEnum +import os class ErrorCodes(IntEnum): @@ -43,3 +44,7 @@ ERROR_DESCRIPTIONS = { 418: "I'm a teapot, I can't make coffee. (._.)", 429: "Please don't send us that many requests." } + +# PaperTrail logging +PAPERTRAIL_ADDRESS = os.environ.get("PAPERTRAIL_ADDRESS") +PAPERTRAIL_PORT = int(os.environ.get("PAPERTRAIL_PORT", 0)) |