added some missing logs at http requests 53/1053/2
authortierno <alfonso.tiernosepulveda@telefonica.com>
Tue, 31 Jan 2017 11:43:46 +0000 (12:43 +0100)
committertierno <alfonso.tiernosepulveda@telefonica.com>
Thu, 2 Feb 2017 13:56:06 +0000 (14:56 +0100)
Change-Id: Iab69bfe9c6ce80e5f5b91f3f3fc4ae9fdfcf9ca4
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
httpserver.py

index 8cd482f..65d7ede 100644 (file)
@@ -1086,10 +1086,11 @@ def http_get_scenario_id(tenant_id, scenario_id):
 @bottle.route(url_base + '/<tenant_id>/scenarios/<scenario_id>', method='DELETE')
 def http_delete_scenario_id(tenant_id, scenario_id):
     '''delete a scenario from database, can use both uuid or name'''
+    logger.debug('FROM %s %s %s', bottle.request.remote_addr, bottle.request.method, bottle.request.url)
     try:
         #check valid tenant_id
         if tenant_id != "any":
-            nfvo.check_tenant(mydb, tenant_id) 
+            nfvo.check_tenant(mydb, tenant_id)
         #obtain data
         data = mydb.delete_scenario(scenario_id, tenant_id)
         #print json.dumps(data, indent=4)