diff --git a/dist/setup/index.js b/dist/setup/index.js index 33a3e567..9ce85b6a 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -97572,7 +97572,7 @@ function installCpythonFromRelease(release) { core.info(err.message); } if (err.stack) { - core.debug(err.stack); + core.info(err.stack); } } throw err; diff --git a/src/install-python.ts b/src/install-python.ts index 34a4b026..2435b8ed 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -159,7 +159,7 @@ export async function installCpythonFromRelease(release: tc.IToolRelease) { core.info(err.message); } if (err.stack) { - core.debug(err.stack); + core.info(err.stack); } } throw err;