sentry: fix formatting

This commit is contained in:
Aleix Conchillo Flaqué
2024-12-17 07:14:31 -08:00
parent fe0a7d07bd
commit 141b0a6560

View File

@@ -36,8 +36,7 @@ class SentryMetrics(FrameProcessorMetrics):
start_timestamp=self._start_ttfb_time, start_timestamp=self._start_ttfb_time,
) )
logger.debug( logger.debug(
f"Sentry Span ID: {self._ttfb_metrics_span.span_id} Description: { f"Sentry Span ID: {self._ttfb_metrics_span.span_id} Description: {self._ttfb_metrics_span.description} started."
self._ttfb_metrics_span.description} started."
) )
self._should_report_ttfb = not report_only_initial_ttfb self._should_report_ttfb = not report_only_initial_ttfb
@@ -55,8 +54,7 @@ class SentryMetrics(FrameProcessorMetrics):
start_timestamp=self._start_processing_time, start_timestamp=self._start_processing_time,
) )
logger.debug( logger.debug(
f"Sentry Span ID: {self._processing_metrics_span.span_id} Description: { f"Sentry Span ID: {self._processing_metrics_span.span_id} Description: {self._processing_metrics_span.description} started."
self._processing_metrics_span.description} started."
) )
async def stop_processing_metrics(self): async def stop_processing_metrics(self):