From cc6c47bafbd62f02f0e4506301c6286ef2e0a32a Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Mon, 14 Apr 2025 13:27:39 +0530 Subject: [PATCH] update debug to info --- dist/setup/index.js | 2 +- src/install-python.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;