mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-07-01 18:30:34 +00:00
Add logging for production. Mount web.env into opaque_daemon.
This commit is contained in:
13
config.py
13
config.py
@ -46,7 +46,7 @@ class DevelopmentConfig(Config):
|
||||
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
||||
filemode='w')
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.info('Logging has started.')
|
||||
logger.info('Logging has started with level WARNING.')
|
||||
|
||||
|
||||
class TestingConfig(Config):
|
||||
@ -67,6 +67,17 @@ class ProductionConfig(Config):
|
||||
os.environ.get('POSTGRES_PASSWORD'),
|
||||
os.environ.get('POSTGRES_DB_NAME')
|
||||
)
|
||||
if not os.path.isfile('logs/opaque_web.log'):
|
||||
file_path = os.path.join(os.getcwd(), 'logs/opaque_web.log')
|
||||
log = open(file_path, 'w+')
|
||||
log.close()
|
||||
log_format = ("%(asctime)s - %(levelname)s - %(name)s - "
|
||||
"%(filename)s - %(lineno)d - %(message)s")
|
||||
logging.basicConfig(filename='logs/opaque_web.log', level='ERROR',
|
||||
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
||||
filemode='w')
|
||||
logger = logging.getLogger(__name__)
|
||||
logger.info('Logging has started with level ERROR.')
|
||||
|
||||
|
||||
config = {
|
||||
|
Reference in New Issue
Block a user