Improve diagnostics: show exception stack trace (#63)

Also add logging to the quiet exception handlers.
This commit is contained in:
Vlad-Shcherbina
2022-06-25 23:20:01 +02:00
committed by GitHub
parent cb2cf0cc7c
commit 2055a01dcd
2 changed files with 14 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ async function run() {
} catch (e) {
setCacheHitOutput(false);
core.info(`[warning] ${(e as any).message}`);
core.info(`[warning] ${(e as any).stack}`);
}
}