From e98e967740e58cf429b76b187828e3e0625215a5 Mon Sep 17 00:00:00 2001 From: Tommy Carpenter Date: Thu, 5 Jul 2018 17:19:28 -0400 Subject: Bugfixes, add EELF error log func Change-Id: I159c9e663e8f17871862bb3ba42d8ea76fc2c05c Issue-ID: DCAEGEN2-581 Signed-off-by: Tommy Carpenter --- app/app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/app/main.py') diff --git a/app/app/main.py b/app/app/main.py index 6cedc4d..dd71ccf 100755 --- a/app/app/main.py +++ b/app/app/main.py @@ -19,11 +19,11 @@ # ECOMP is a trademark and service mark of AT&T Intellectual Property. import connexion -from config_binding_service.logging import create_logger +from config_binding_service.logging import create_loggers # Entrypoint When in uwsgi # This create logger call used to be in the main block, but when moving to NGINX+uwsgi, this had to change. See https://hub.docker.com/r/tiangolo/uwsgi-nginx-flask/ -create_logger() +create_loggers() app = connexion.App(__name__, specification_dir='.') app.add_api('swagger.yaml', arguments={'title': 'Config Binding Service'}) -- cgit 1.2.3-korg