diff options
author | Michael Manfre | 2022-12-06 11:50:42 -0500 |
---|---|---|
committer | GitHub | 2022-12-06 09:50:42 -0700 |
commit | e2b234d9ed99ba90835d0a4c59ea22dde1262352 (patch) | |
tree | 65778ec82ff08a63f877d45cf13c9229471fa2c0 /takahe | |
parent | 3e313800fcff82ab7b2c0e08abba915a03dd8fb2 (diff) | |
download | takahe-e2b234d9ed99ba90835d0a4c59ea22dde1262352.tar.gz takahe-e2b234d9ed99ba90835d0a4c59ea22dde1262352.tar.bz2 takahe-e2b234d9ed99ba90835d0a4c59ea22dde1262352.zip |
Setting to enable Sentry capture_messages (#128)
Diffstat (limited to 'takahe')
-rw-r--r-- | takahe/settings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/takahe/settings.py b/takahe/settings.py index f263153..981bb96 100644 --- a/takahe/settings.py +++ b/takahe/settings.py @@ -87,6 +87,7 @@ class Settings(BaseSettings): SENTRY_DSN: str | None = None SENTRY_SAMPLE_RATE: float = 1.0 SENTRY_TRACES_SAMPLE_RATE: float = 1.0 + SENTRY_CAPTURE_MESSAGES: bool = False #: Fallback domain for links. MAIN_DOMAIN: str = "example.com" |