Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Push logging errors to sentry #72

Merged
merged 1 commit into from
Dec 12, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions profbit/app.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import logging
from urllib import parse

from flask import Flask
Expand All @@ -8,7 +9,9 @@
from flask_login import current_user
from peewee import PostgresqlDatabase
from peewee import SqliteDatabase
from raven.conf import setup_logging
from raven.contrib.flask import Sentry
from raven.handlers.logging import SentryHandler
from social_flask.routes import social_auth
from social_flask_peewee.models import FlaskStorage
from social_flask_peewee.models import init_social
Expand All @@ -27,6 +30,9 @@
SENTRY_DSN = app.config.get('SENTRY_PRIVATE_DSN')
if not app.debug and SENTRY_DSN:
sentry = Sentry(app, dsn=SENTRY_DSN)
handler = SentryHandler(SENTRY_DSN)
handler.setLevel(logging.ERROR)
setup_logging(handler)
else:
sentry = None

Expand Down