From 11af5797fd47b9545120de7a33c000b003081106 Mon Sep 17 00:00:00 2001 From: Matt Hanley Date: Thu, 15 Oct 2020 18:07:14 +0100 Subject: [PATCH] Fixed line prefix for warning level log --- ghost/pretty-cli/lib/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/pretty-cli/lib/ui.js b/ghost/pretty-cli/lib/ui.js index f0ccdc52bd..7a22a035b4 100644 --- a/ghost/pretty-cli/lib/ui.js +++ b/ghost/pretty-cli/lib/ui.js @@ -20,7 +20,7 @@ module.exports.log.info = (...args) => { }; module.exports.log.warn = (...args) => { - log(chalk.magenta('ok'), ...args); + log(chalk.magenta('warn'), ...args); }; module.exports.log.error = (...args) => {