summaryrefslogtreecommitdiff
path: root/frontend/src/components/settings/pages
diff options
context:
space:
mode:
authorynhhoJ <22500212+ynhhoJ@users.noreply.github.com>2026-07-14 05:23:49 +0300
committerGitHub <noreply@github.com>2026-07-13 22:23:49 -0400
commit671cfe49caad5f4b7f209ee8a596cda8a1c7b4a7 (patch)
tree208121e962e543ad3b8277be4f9824dfb9124c28 /frontend/src/components/settings/pages
parentdfaeb0beb3c441cd42adc432d560fd450af87c14 (diff)
downloaddecky-loader-671cfe49caad5f4b7f209ee8a596cda8a1c7b4a7.tar.gz
decky-loader-671cfe49caad5f4b7f209ee8a596cda8a1c7b4a7.zip
feat: Add plugins version in logs (#871)
Diffstat (limited to 'frontend/src/components/settings/pages')
-rw-r--r--frontend/src/components/settings/pages/plugin_list/index.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/settings/pages/plugin_list/index.tsx b/frontend/src/components/settings/pages/plugin_list/index.tsx
index 43d79709..75365ba5 100644
--- a/frontend/src/components/settings/pages/plugin_list/index.tsx
+++ b/frontend/src/components/settings/pages/plugin_list/index.tsx
@@ -23,6 +23,7 @@ import {
requestPluginInstall,
} from '../../../../store';
import { useSetting } from '../../../../utils/hooks/useSetting';
+import { getPluginDisplayName } from '../../../../utils/pluginHelpers';
import { useDeckyState } from '../../../DeckyState';
import PluginListLabel from './PluginListLabel';
@@ -69,7 +70,7 @@ function PluginInteractables(props: { entry: ReorderableEntry<PluginTableData> }
try {
await reloadPluginBackend(name);
} catch (err) {
- console.error('Error Reloading Plugin Backend', err);
+ console.error(`Error Reloading Plugin Backend for ${getPluginDisplayName(name, version)}`, err);
}
}}
>