From a29dca77bb920c04c89a6c8eb33b7b2dc300f21c Mon Sep 17 00:00:00 2001 From: Haritha <73516759+HarithaVattikuti@users.noreply.github.com> Date: Sun, 13 Apr 2025 21:42:58 -0500 Subject: [PATCH] Fix error message to debug --- src/install-python.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install-python.ts b/src/install-python.ts index 70b45263..acf15908 100644 --- a/src/install-python.ts +++ b/src/install-python.ts @@ -64,9 +64,9 @@ export async function getManifest(): Promise { 'The repository manifest is invalid or does not include any valid tool release (IToolRelease) entries.' ); } catch (err) { - core.error('Failed to fetch the manifest from the repository API.'); + core.debug('Failed to fetch the manifest from the repository API.'); if (err instanceof Error) { - core.error(`Error message: ${err.message}`); + core.debug(`Error message: ${err.message}`); core.debug(`Error stack: ${err.stack}`); } else { core.error('An unexpected error occurred while fetching the manifest.');