dongtuojuan8998 2014-05-09 00:00
浏览 18

去哪里记录错误?

I'm using the log packages and I'm wondering what's the default destination of the log data. I can't find it anywhere. Do I need a io writer and specifically call it after each log or how is it supposed to work ?

  • 写回答

1条回答 默认 最新

  • douhuanchi6586 2014-05-09 00:05
    关注

    It should be stdErr, as in line 58 of log.go:

    var std = New(os.Stderr, "", LstdFlags)
    

    So package methods like Fatal() uses std by default:

    // Fatal is equivalent to Print() followed by a call to os.Exit(1).
    func Fatal(v ...interface{}) {
        std.Output(2, fmt.Sprint(v...))
        os.Exit(1)
    }
    

    The blog post "How to write Go packages coders will love " (by Baron Schwartz) references that technique:

    One of the patterns I've found in the standard Go library is what I call package-and-object. (That's my own name; maybe I'm reinventing or naming something already known by another name.) You can see this idiom in several packages. It makes these packages a delight to use.

    The essence of the idiom is that you design a type with methods as usual, and then you also place matching functions at the package level itself. These functions simply delegate to a default instance of the type that's a private package-level variable, created in an init() function.

    To take a look at the default logging functionality, for example, you can just import the log package and then write things like log.Print(). It's super-concise and handy, and it does the right thing.
    Want to customize it? Make your own log.Logger variable, and set its properties.


    Note that, with Go 1.13 (Q3 2019), the new Writer() function returns the output destination for the standard logger.

    评论

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP