From db4c544b72ef16dbab010a0408cfb47fbc0a5a12 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 15 Apr 2025 11:54:11 +0100 Subject: [PATCH] Use console.log Co-authored-by: Nick Bolton --- src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.ts b/src/utils.ts index 0b0e3dc..2eabad3 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -37,7 +37,7 @@ export function loadJsonFile(...paths: string[]): T { const joinedPaths = path.join(...paths); if (!fs.existsSync(joinedPaths)) { - console.debug(`Skipping nonexisting file: ${joinedPaths}`); + console.log(`Skipping nonexisting file: ${joinedPaths}`); return {} as T; }