PATH:
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
sentry_sdk
import sys import logging import warnings from sentry_sdk import get_client from sentry_sdk.client import _client_init_debug from sentry_sdk.utils import logger from logging import LogRecord class _DebugFilter(logging.Filter): def filter(self, record): # type: (LogRecord) -> bool if _client_init_debug.get(False): return True return get_client().options["debug"] def init_debug_support(): # type: () -> None if not logger.handlers: configure_logger() def configure_logger(): # type: () -> None _handler = logging.StreamHandler(sys.stderr) _handler.setFormatter(logging.Formatter(" [sentry] %(levelname)s: %(message)s")) logger.addHandler(_handler) logger.setLevel(logging.DEBUG) logger.addFilter(_DebugFilter()) def configure_debug_hub(): # type: () -> None warnings.warn( "configure_debug_hub is deprecated. Please remove calls to it, as it is a no-op.", DeprecationWarning, stacklevel=2, )
[+]
__pycache__
[-] consts.py
[edit]
[-] types.py
[edit]
[+]
profiler
[-] metrics.py
[edit]
[-] attachments.py
[edit]
[-] serializer.py
[edit]
[-] _types.py
[edit]
[-] _log_batcher.py
[edit]
[-] debug.py
[edit]
[-] __init__.py
[edit]
[-] worker.py
[edit]
[-] _compat.py
[edit]
[-] scope.py
[edit]
[-] envelope.py
[edit]
[-] tracing_utils.py
[edit]
[-] _lru_cache.py
[edit]
[+]
..
[-] scrubber.py
[edit]
[-] session.py
[edit]
[+]
integrations
[-] _werkzeug.py
[edit]
[+]
crons
[-] hub.py
[edit]
[-] tracing.py
[edit]
[-] logger.py
[edit]
[-] py.typed
[edit]
[-] spotlight.py
[edit]
[-] feature_flags.py
[edit]
[-] _metrics_batcher.py
[edit]
[-] api.py
[edit]
[-] monitor.py
[edit]
[-] sessions.py
[edit]
[-] transport.py
[edit]
[-] _queue.py
[edit]
[+]
ai
[-] utils.py
[edit]
[-] _init_implementation.py
[edit]
[-] client.py
[edit]