fix: use console.info for handlebars parse warning

This commit is contained in:
2024-04-02 18:12:17 +03:00
committed by Chen Asraf
parent f883571daa
commit 19e7b0f0c3

View File

@@ -121,7 +121,7 @@ export function handlebarsParse(
return Buffer.from(outputContents)
} catch (e) {
log(config, LogLevel.debug, e)
log(config, LogLevel.warning, "Couldn't parse file with handlebars, returning original content")
log(config, LogLevel.info, "Couldn't parse file with handlebars, returning original content")
return Buffer.from(templateBuffer)
}
}