🔊 Switch to debug logs instead of info logs

This commit is contained in:
trickypr 2022-04-13 10:42:16 +10:00
parent 35c4d7316b
commit 45fe818202

View file

@ -76,7 +76,7 @@ function constructConfig(name: string) {
}
async function setupImages(configPath: string, outputPath: string) {
log.info('Generating icons')
log.debug('Generating icons')
await every([16, 22, 24, 32, 48, 64, 128, 256], async (size) => {
await sharp(join(configPath, 'logo.png'))
@ -110,7 +110,7 @@ async function setupImages(configPath: string, outputPath: string) {
// Register logo in cache
await addHash(join(configPath, 'logo.png'))
log.info('Generating macos install')
log.debug('Generating macos install')
const macosInstall = await renderAsync(
await readFile(join(configPath, 'MacOSInstaller.svg'))
)