Files
catalyst/catalyst/constants.py
T

14 lines
334 B
Python

# -*- coding: utf-8 -*-
import os
import logbook
''' You can override the LOG level from your environment.
For example, if you want to see the DEBUG messages, run:
$ export CATALYST_LOG_LEVEL=10
'''
LOG_LEVEL = int(os.environ.get('CATALYST_LOG_LEVEL', logbook.INFO))
DATE_TIME_FORMAT = '%Y-%m-%d %H:%M'
AUTO_INGEST = False