From a7f96a1af8ee7e1f0af21b39d6e15ea1cfeb51a8 Mon Sep 17 00:00:00 2001 From: Daniel Friederich Date: Mon, 25 Nov 2024 13:21:05 -0600 Subject: [PATCH] Disable debug logging Remove console.log statement which was logging repeately. --- ui/src/frontend/scroll_helper.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/src/frontend/scroll_helper.ts b/ui/src/frontend/scroll_helper.ts index 1916004630..a2e6659aba 100644 --- a/ui/src/frontend/scroll_helper.ts +++ b/ui/src/frontend/scroll_helper.ts @@ -53,7 +53,6 @@ export function horizontalScrollToTs(ts: TPTime) { // - Otherwise, preserve the zoom range. export function focusHorizontalRange( start: TPTime, end: TPTime, viewPercentage?: number) { - console.log('focusHorizontalRange', start, end); const visible = globals.frontendLocalState.visibleWindowTime; const trace = globals.stateTraceTime(); const select = HighPrecisionTimeSpan.fromTpTime(start, end);