diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-08-02 18:54:55 -0400 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-08-02 18:54:55 -0400 |
| commit | ab6ec981604a32611d972ede634abe7ccd19b0d2 (patch) | |
| tree | 49f04b47f959cf48703a9b36fecc1d183d98cf7a /frontend/src/tabs-hook.ts | |
| parent | f1e809781ad60cf3f6cddf0a0b94273b61bf1999 (diff) | |
| download | decky-loader-ab6ec981604a32611d972ede634abe7ccd19b0d2.tar.gz decky-loader-ab6ec981604a32611d972ede634abe7ccd19b0d2.zip | |
API for patching existing routes, lower power usev2.0.4-ab6ec98-pre
Diffstat (limited to 'frontend/src/tabs-hook.ts')
| -rw-r--r-- | frontend/src/tabs-hook.ts | 4 |
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); } |
