Clean up console logs

This commit is contained in:
Jordan Eldredge 2025-11-03 08:05:02 -08:00
parent 50d5dbbf4f
commit 4b405bc831
2 changed files with 1 additions and 4 deletions

View file

@ -11,7 +11,7 @@ const { handleRequest } = createYogaInstance({
},
logger: {
log: (message: string, context: Record<string, any>) => {
console.log(message, context);
// console.log(message, context);
},
logError: (message: string, context: Record<string, any>) => {
console.error(message, context);

View file

@ -193,9 +193,6 @@ export default class SkinModel {
const filename = file.getFileName();
const isReadme = IS_README.test(filename);
const isNotReadme = IS_NOT_README.test(filename);
console.log({ filename, isReadme, isNotReadme, md5: file.getFileMd5() });
return isReadme && !isNotReadme;
});