Skip to content

Commit 47c0aeb

Browse files
committed
fix: Nicer log level
1 parent 18cd8bf commit 47c0aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/hub.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def capture_exception(self, error=None):
172172
def _capture_internal_exception(self, exc_info):
173173
"""Capture an exception that is likely caused by a bug in the SDK
174174
itself."""
175-
logger.debug("Internal error in sentry_sdk", exc_info=exc_info)
175+
logger.error("Internal error in sentry_sdk", exc_info=exc_info)
176176

177177
def add_breadcrumb(self, crumb=None, hint=None, **kwargs):
178178
"""Adds a breadcrumb. The breadcrumbs are a dictionary with the

0 commit comments

Comments
 (0)