summaryrefslogtreecommitdiff
path: root/frontend/src/tabs-hook.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/tabs-hook.ts')
-rw-r--r--frontend/src/tabs-hook.ts4
1 files changed, 2 insertions, 2 deletions
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);
}