Add logging for production. Mount web.env into opaque_daemon.

This commit is contained in:
Stephan Porada 2019-09-12 11:42:33 +02:00
parent 926935af56
commit 86b08bc142
2 changed files with 15 additions and 2 deletions

View File

@ -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 = {

View File

@ -29,7 +29,9 @@ services:
placement:
constraints:
- node.role == manager
env_file: db.env
env_file:
- db.env
- web.env
image: gitlab.ub.uni-bielefeld.de:4567/sfb1288inf/opaque_daemon:latest
volumes:
- ./logs/opaque_daemon.log:/home/opaque_daemon/logs/opaque_daemon.log