diff --git a/src/shared/util.js b/src/shared/util.js index 729c1e698..71b140e1a 100644 --- a/src/shared/util.js +++ b/src/shared/util.js @@ -374,7 +374,7 @@ function getVerbosityLevel() { function info(msg) { if (verbosity >= VerbosityLevel.INFOS) { // eslint-disable-next-line no-console - console.log(`Info: ${msg}`); + console.info(`Info: ${msg}`); } } @@ -382,7 +382,7 @@ function info(msg) { function warn(msg) { if (verbosity >= VerbosityLevel.WARNINGS) { // eslint-disable-next-line no-console - console.log(`Warning: ${msg}`); + console.warn(`Warning: ${msg}`); } }