v0.4.52 fixes logging name mismatching. Add individual log files per module
Change-Id: I15c922fb2e6135662e2d12e2898e790be9fb3602
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/nfvo.py b/nfvo.py
index 7dbd51d..da2cfa0 100644
--- a/nfvo.py
+++ b/nfvo.py
@@ -41,10 +41,11 @@
global global_config
global vimconn_imported
+global logger
vimconn_imported={} #dictionary with VIM type as key, loaded module as value
-logger = logging.getLogger('mano.nfvo')
+logger = logging.getLogger('openmano.nfvo')
class NfvoException(Exception):
def __init__(self, message, http_code):