summaryrefslogtreecommitdiffstats
path: root/kilo/kilo/requests/views/network.py
diff options
context:
space:
mode:
Diffstat (limited to 'kilo/kilo/requests/views/network.py')
-rw-r--r--kilo/kilo/requests/views/network.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/kilo/kilo/requests/views/network.py b/kilo/kilo/requests/views/network.py
index c0133481..eb45189b 100644
--- a/kilo/kilo/requests/views/network.py
+++ b/kilo/kilo/requests/views/network.py
@@ -13,6 +13,7 @@
# limitations under the License.
import logging
import json
+import traceback
from rest_framework import status
from rest_framework.response import Response
@@ -48,6 +49,7 @@ class Networks(APIView):
except VimDriverKiloException as e:
return Response(data={'error': e.content}, status=e.status_code)
except Exception as e:
+ logger.error(traceback.format_exc())
return Response(data={'error': str(e)},
status=status.HTTP_500_INTERNAL_SERVER_ERROR)
@@ -131,6 +133,7 @@ class Networks(APIView):
except VimDriverKiloException as e:
return Response(data={'error': e.content}, status=e.status_code)
except Exception as e:
+ logger.error(traceback.format_exc())
return Response(data={'error': str(e)},
status=status.HTTP_500_INTERNAL_SERVER_ERROR)
pass
@@ -153,6 +156,7 @@ class Networks(APIView):
except VimDriverKiloException as e:
return Response(data={'error': e.content}, status=e.status_code)
except Exception as e:
+ logger.error(traceback.format_exc())
return Response(data={'error': str(e)},
status=status.HTTP_500_INTERNAL_SERVER_ERROR)
pass