summaryrefslogtreecommitdiffstats
path: root/kilo/kilo/requests/views/limits.py
diff options
context:
space:
mode:
Diffstat (limited to 'kilo/kilo/requests/views/limits.py')
-rw-r--r--kilo/kilo/requests/views/limits.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/kilo/kilo/requests/views/limits.py b/kilo/kilo/requests/views/limits.py
index fce584f3..ee44124b 100644
--- a/kilo/kilo/requests/views/limits.py
+++ b/kilo/kilo/requests/views/limits.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
@@ -75,6 +76,7 @@ class Limits(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)