Skip to content

Commit

Permalink
sentry: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Dec 17, 2024
1 parent fe0a7d0 commit 141b0a6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pipecat/processors/metrics/sentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ async def start_ttfb_metrics(self, report_only_initial_ttfb):
start_timestamp=self._start_ttfb_time,
)
logger.debug(
f"Sentry Span ID: {self._ttfb_metrics_span.span_id} Description: {
self._ttfb_metrics_span.description} started."
f"Sentry Span ID: {self._ttfb_metrics_span.span_id} Description: {self._ttfb_metrics_span.description} started."
)
self._should_report_ttfb = not report_only_initial_ttfb

Expand All @@ -55,8 +54,7 @@ async def start_processing_metrics(self):
start_timestamp=self._start_processing_time,
)
logger.debug(
f"Sentry Span ID: {self._processing_metrics_span.span_id} Description: {
self._processing_metrics_span.description} started."
f"Sentry Span ID: {self._processing_metrics_span.span_id} Description: {self._processing_metrics_span.description} started."
)

async def stop_processing_metrics(self):
Expand Down

0 comments on commit 141b0a6

Please sign in to comment.