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; }