Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 30b2ddc

Browse files
authored
add logging in case of unsuccessful operation (#25)
display complete traceback if there is an Internal server error (for status code 500) otherwise log the error statement only. Signed-off-by: Priyank Singh <[email protected]>
1 parent 0cb677d commit 30b2ddc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

bridgeql/django/bridge.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import json
66
from django.views.decorators.http import require_GET
77

8-
8+
from bridgeql.django import logger
99
from bridgeql.django.auth import auth_decorator
1010
from bridgeql.django.exceptions import (
1111
ForbiddenModelOrField,
@@ -28,11 +28,14 @@ def read_django_model(request):
2828
res = {'data': qset, 'message': '', 'success': True}
2929
return JSONResponse(res)
3030
except ForbiddenModelOrField as e:
31+
logger.error(e)
3132
res = {'data': [], 'message': str(e), 'success': False}
3233
return JSONResponse(res, status=403)
3334
except InvalidRequest as e:
35+
logger.error(e)
3436
res = {'data': [], 'message': str(e), 'success': False}
3537
return JSONResponse(res, status=400)
3638
except Exception as e:
39+
logger.exception(e)
3740
res = {'data': [], 'message': str(e), 'success': False}
3841
return JSONResponse(res, status=500)

0 commit comments

Comments
 (0)