Skip to content

Commit d127fa5

Browse files
committed
chore: fix flask build
1 parent f71b151 commit d127fa5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integrations/flask/test_flask.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ def app():
2424
app.config["TESTING"] = True
2525
app.secret_key = "haha"
2626
app.logger.setLevel(logging.DEBUG)
27-
app.logger.addHandler(SentryHandler())
27+
handler = SentryHandler()
28+
handler.setLevel(logging.DEBUG)
29+
app.logger.addHandler(handler)
2830

2931
login_manager.init_app(app)
3032

0 commit comments

Comments
 (0)