From d8912cff4e53c0ed324a4ab3ce0073f2bf7204d4 Mon Sep 17 00:00:00 2001 From: Research Assistant Date: Mon, 11 May 2026 17:38:38 +0800 Subject: [PATCH] debug: log pip stderr on Sync Runtime failure --- paperforge/plugin/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/paperforge/plugin/main.js b/paperforge/plugin/main.js index 353a8029..fd637543 100644 --- a/paperforge/plugin/main.js +++ b/paperforge/plugin/main.js @@ -2510,6 +2510,7 @@ class PaperForgeSettingTab extends PluginSettingTab { } else { btn.setDisabled(false); btn.setButtonText(t('runtime_health_sync')); + console.error('[PaperForge] pip stderr:', result.stderr); new Notice(t('runtime_health_sync_fail').replace('{0}', 'pip exit code ' + result.exitCode), 8000); } });