From 671cfe49caad5f4b7f209ee8a596cda8a1c7b4a7 Mon Sep 17 00:00:00 2001 From: ynhhoJ <22500212+ynhhoJ@users.noreply.github.com> Date: Tue, 14 Jul 2026 05:23:49 +0300 Subject: feat: Add plugins version in logs (#871) --- frontend/src/components/settings/pages/plugin_list/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'frontend/src/components') 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 } try { await reloadPluginBackend(name); } catch (err) { - console.error('Error Reloading Plugin Backend', err); + console.error(`Error Reloading Plugin Backend for ${getPluginDisplayName(name, version)}`, err); } }} > -- cgit v1.2.3