From 252b619bb1db34b0860a7da9527eabca81a0212e Mon Sep 17 00:00:00 2001 From: Youngheon Jeong <81753155+jjyyhh0208@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:18:34 +0900 Subject: [PATCH] Fix: cloudwatch added --- backend/worklog/profiles/views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/worklog/profiles/views.py b/backend/worklog/profiles/views.py index 9955b03b..5758a8f7 100644 --- a/backend/worklog/profiles/views.py +++ b/backend/worklog/profiles/views.py @@ -271,7 +271,6 @@ def post(self, request, *args, **kwargs): }, status=status.HTTP_500_INTERNAL_SERVER_ERROR) except Exception as e: logger.error(f"Unexpected error: {e}", exc_info=True) - logger.error(f"Exception details: {str(e)}") return Response({ "error": "An unexpected error occurred.", "details": str(e)