We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4eeabcb + b6165c0 commit 05af4ffCopy full SHA for 05af4ff
1 file changed
src/shared/util.js
@@ -374,15 +374,15 @@ function getVerbosityLevel() {
374
function info(msg) {
375
if (verbosity >= VerbosityLevel.INFOS) {
376
// eslint-disable-next-line no-console
377
- console.log(`Info: ${msg}`);
+ console.info(`Info: ${msg}`);
378
}
379
380
381
// Non-fatal warnings.
382
function warn(msg) {
383
if (verbosity >= VerbosityLevel.WARNINGS) {
384
385
- console.log(`Warning: ${msg}`);
+ console.warn(`Warning: ${msg}`);
386
387
388
0 commit comments