From bc96f8891b8a18da5bc672978e1b2b17f126dffa Mon Sep 17 00:00:00 2001 From: gentlementlegen Date: Mon, 30 Dec 2024 18:41:04 +0900 Subject: [PATCH] chore: improved logs --- src/github/utils/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github/utils/config.ts b/src/github/utils/config.ts index 2fa8541..4651ca4 100644 --- a/src/github/utils/config.ts +++ b/src/github/utils/config.ts @@ -34,7 +34,7 @@ export async function getConfigurationFromRepo(context: GitHubContext, repositor return { config: null, errors: [error instanceof TransformDecodeCheckError ? error.error : error] as ValueError[], rawData }; } } - console.log(`YAML could not be decoded for ${owner}/${repository}`); + console.error(`YAML could not be decoded for ${owner}/${repository}`); return { config: null, errors, rawData }; }