symbol: infoColor()

in src/log.js [82:115]


            symbol: infoColor(symbols.step),
            text: spinner.isEnabled ? infoColor(text) : text
        });
    },

    highlight: function(text, highlight) {
        this.step(text + highlightColor(highlight));
    },

    highlightColor,

    /** Basic log message, visible by default. Ends any running spinner(). */
    log: function(...args) {
        spinner.stop();
        // goes to stdout
        console.info(...args);
    },

    /** Warning message, visible by default. Ends any running spinner(). */
    warn: function(...args) {
        spinner.stop();
        // goes to stderr
        console.warn(...args);
    },

    /** Error message, visible by default. Ends any running spinner(). */
    error: function(...args) {
        spinner.stop();
        // goes to stderr
        console.error(...args);
    },

    verbose: function(...args) {
        if (this.isVerbose) {