We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf2385 commit a29dca7Copy full SHA for a29dca7
src/install-python.ts
@@ -64,9 +64,9 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
64
'The repository manifest is invalid or does not include any valid tool release (IToolRelease) entries.'
65
);
66
} catch (err) {
67
- core.error('Failed to fetch the manifest from the repository API.');
+ core.debug('Failed to fetch the manifest from the repository API.');
68
if (err instanceof Error) {
69
- core.error(`Error message: ${err.message}`);
+ core.debug(`Error message: ${err.message}`);
70
core.debug(`Error stack: ${err.stack}`);
71
} else {
72
core.error('An unexpected error occurred while fetching the manifest.');
0 commit comments