log exception as info so it does not go to sentry w/ burnettk
This commit is contained in:
parent
3e26226514
commit
cf72dfe0f9
|
@ -176,7 +176,7 @@ def handle_exception(exception: Exception) -> flask.wrappers.Response:
|
||||||
id = capture_exception(exception)
|
id = capture_exception(exception)
|
||||||
|
|
||||||
if isinstance(exception, ApiError):
|
if isinstance(exception, ApiError):
|
||||||
current_app.logger.error(f"Sending ApiError exception to sentry: {exception} with error code {exception.error_code}")
|
current_app.logger.info(f"Sending ApiError exception to sentry: {exception} with error code {exception.error_code}")
|
||||||
|
|
||||||
organization_slug = current_app.config.get("SENTRY_ORGANIZATION_SLUG")
|
organization_slug = current_app.config.get("SENTRY_ORGANIZATION_SLUG")
|
||||||
project_slug = current_app.config.get("SENTRY_PROJECT_SLUG")
|
project_slug = current_app.config.get("SENTRY_PROJECT_SLUG")
|
||||||
|
|
Loading…
Reference in New Issue