美文网首页
日志库 winston 的学习笔记 - logger.info

日志库 winston 的学习笔记 - logger.info

作者: _扫地僧_ | 来源:发表于2021-11-24 07:32 被阅读0次
    
    if (process.env.NODE_ENV !== 'production') {
        logger.add(new winston.transports.Console({
          format: winston.format.combine(
            winston.format.colorize({ all: true }),
            winston.format.simple()
        )}));
    }
    

    上述代码的含义是,如果当前 Node.js 执行环境不是生产环境,则将 winston 的输出,打印到控制台上。

    _stream_readable.js 抛出 data 事件:

    读取事件处理函数:


    console 对应的 event handler:


    transformed:

    console 有专门对应的 transport 实现文件,位于 console.js 内:


    从 data 字符串能看出在 console 打印彩色字符串的实现方式:


    并没有像我想象的那样,执行到 82 行的 console.log

    console 对象的 _stdout 属性,在 internal 这个 constructor.js 里注入:


    这个 writeUtf8String 函数,是原生 native API:


    位于 Node.js 源代码 的 internal/stream_base_common.js 内部:

    writeUtf8String

    stream_base_commons.js 文件位置如下:

    https://github.com/nodejs/node/tree/master/lib/internal

    native 实现:


    https://github.com/nodejs/node/blob/master/lib/internal/stream_base_commons.js

    this[kFs].write

    更多Jerry的原创文章,尽在:"汪子熙":


    相关文章

      网友评论

          本文标题:日志库 winston 的学习笔记 - logger.info

          本文链接:https://www.haomeiwen.com/subject/vbjqaltx.html