Adds alarm engine
[osm/MON.git] / osm_mon / core / auth.py
index fa80256..71a817e 100644 (file)
 ##
 
 import json
+import logging
 
 from osm_mon.core.database import VimCredentials, DatabaseManager
 
+log = logging.getLogger(__name__)
+
 
 class AuthManager:
     def __init__(self):
         self.database_manager = DatabaseManager()
 
     def store_auth_credentials(self, creds_dict):
+        log.info(creds_dict)
         credentials = VimCredentials()
         credentials.uuid = creds_dict['_id']
         credentials.name = creds_dict['name']