Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/HH-68956' into EXP-21150
Browse files Browse the repository at this point in the history
  • Loading branch information
HH ReleaseBot committed May 2, 2017
2 parents b5a1456 + b72bb5d commit ee0fe14
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontik/loggers/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ def logger_initializer(handler):
handler.get_sentry_logger = lambda: None
return

sentry_client = AsyncSentryClient(dsn=dsn, http_client=app.curl_http_client)
sentry_client = AsyncSentryClient(
dsn=dsn, http_client=app.curl_http_client,
# breadcrumbs have serious performance penalties
enable_breadcrumbs=False, install_logging_hook=False
)

def get_sentry_logger():
if not hasattr(handler, 'sentry_logger'):
Expand Down

0 comments on commit ee0fe14

Please sign in to comment.