Fixed line prefix for warning level log

This commit is contained in:
Matt Hanley 2020-10-15 18:07:14 +01:00 committed by Daniel Lockyer
parent 48d88c5651
commit 11af5797fd

View File

@ -20,7 +20,7 @@ module.exports.log.info = (...args) => {
}; };
module.exports.log.warn = (...args) => { module.exports.log.warn = (...args) => {
log(chalk.magenta('ok'), ...args); log(chalk.magenta('warn'), ...args);
}; };
module.exports.log.error = (...args) => { module.exports.log.error = (...args) => {