Skip to content

Commit a29dca7

Browse files
Fix error message to debug
1 parent 1bf2385 commit a29dca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/install-python.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
6464
'The repository manifest is invalid or does not include any valid tool release (IToolRelease) entries.'
6565
);
6666
} catch (err) {
67-
core.error('Failed to fetch the manifest from the repository API.');
67+
core.debug('Failed to fetch the manifest from the repository API.');
6868
if (err instanceof Error) {
69-
core.error(`Error message: ${err.message}`);
69+
core.debug(`Error message: ${err.message}`);
7070
core.debug(`Error stack: ${err.stack}`);
7171
} else {
7272
core.error('An unexpected error occurred while fetching the manifest.');

0 commit comments

Comments
 (0)