Skip to content
Snippets Groups Projects
Commit dadb3352 authored by Leo P. Singer's avatar Leo P. Singer
Browse files

Ignore noisy log but harmless messsages from adc-streaming

Remove once #457 is fixed.

See !985.
parent 546eecac
No related branches found
No related tags found
1 merge request!987Ignore noisy log but harmless messsages from adc-streaming
......@@ -4,7 +4,7 @@ from urllib.parse import urlparse, urlunparse
from celery.utils.log import get_logger
from safe_netrc import netrc, NetrcParseError
import sentry_sdk
from sentry_sdk.integrations import celery, flask, redis, tornado
from sentry_sdk.integrations import celery, flask, logging, redis, tornado
from .. import _version
from ..util import SPHINX
......@@ -48,6 +48,12 @@ def configure():
netloc)
return
# Ignore noisy log but harmless messsages from adc-streaming.
#
# FIXME: Remove once https://git.ligo.org/emfollow/gwcelery/-/issues/457
# is fixed.
logging.ignore_logger('adc-streaming')
# The "legacy" Sentry DSN requires a "public key" and a "private key",
# which are transmitted as the username and password in the URL.
# However, as of Sentry 9, then "private key" part is no longer required.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment