8 lines
248 B
Python
8 lines
248 B
Python
LOCAL_SETTINGS = True # avoid recursive imports
|
|
|
|
from savage_lands._settings.development_generated import *
|
|
|
|
import logging
|
|
|
|
LOCAL_LOGGING_PREFIX = "%s %%(message)s" % BRANCH
|
|
logging.basicConfig(format=LOCAL_LOGGING_PREFIX, level=logging.DEBUG)
|