Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix error message to debug
  • Loading branch information
HarithaVattikuti authored Apr 14, 2025
commit a29dca77bb920c04c89a6c8eb33b7b2dc300f21c
4 changes: 2 additions & 2 deletions src/install-python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
'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.');
Expand Down
Loading