mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 04:13:30 +03:00
Fixed line prefix for warning level log
This commit is contained in:
parent
48d88c5651
commit
11af5797fd
@ -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) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user