From ab6ec981604a32611d972ede634abe7ccd19b0d2 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Tue, 2 Aug 2022 18:54:55 -0400 Subject: API for patching existing routes, lower power use --- frontend/src/tabs-hook.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/tabs-hook.ts') diff --git a/frontend/src/tabs-hook.ts b/frontend/src/tabs-hook.ts index 667fc973..b83a1e97 100644 --- a/frontend/src/tabs-hook.ts +++ b/frontend/src/tabs-hook.ts @@ -110,12 +110,12 @@ class TabsHook extends Logger { } add(tab: Tab) { - this.log('Adding tab', tab.id, 'to render array'); + this.debug('Adding tab', tab.id, 'to render array'); this.tabs.push(tab); } removeById(id: number) { - this.log('Removing tab', id); + this.debug('Removing tab', id); this.tabs = this.tabs.filter((tab) => tab.id !== id); } -- cgit v1.2.3