1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-03 17:13:17 +03:00

Disabled sentry backend debug prints

Added couple of debug prints for host readiness
This commit is contained in:
Alexander Presnyakov
2025-09-01 21:35:58 +00:00
committed by Leonid Fedorov
parent 08d46a9e70
commit 113d6cc41b
5 changed files with 13 additions and 19 deletions

View File

@@ -93,11 +93,6 @@ class SentryBackend(TracerBackend):
scope.set_tag('http.method', method)
if path:
scope.set_tag('http.path', path)
# TODO: remove this
logger.info(
"Sentry transaction started name=%s sampled=%s",
name, getattr(transaction, 'sampled', None)
)
@swallow_exceptions
def on_request_finished(self, status_code: Optional[int]) -> None:
@@ -110,7 +105,5 @@ class SentryBackend(TracerBackend):
transaction.__exit__(None, None, None)
# Clear transaction in this context
self._current_transaction.set(None)
# TODO: remove this
logger.info("Sentry transaction finished status=%s", status_code)