Use console.log

Co-authored-by: Nick Bolton <nick@symless.com>
This commit is contained in:
David Baker 2025-04-15 11:54:11 +01:00 committed by GitHub
parent 0559886b77
commit db4c544b72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,7 @@ export function loadJsonFile<T extends Json>(...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;
}