golang interface转byte_聊聊golang的zap的error

本文主要研究一下golang的zap的error

52a04214e2361eb1242aa8e435e6d2eb.png

error

zap@v1.16.0/error.go

var _errArrayElemPool = sync.Pool{New: func() interface{} {    return &errArrayElem{}}}// Error is shorthand for the common idiom NamedError("error", err).func Error(err error) Field {    return NamedError("error", err)}// NamedError constructs a field that lazily stores err.Error() under the// provided key. Errors which also implement fmt.Formatter (like those produced// by github.com/pkg/errors) will also have their verbose representation stored// under key+"Verbose". If passed a nil error, the field is a no-op. For the common case in which the key is simply "error", the Error function// is shorter and less repetitive.func NamedError(key string, err error) Field {    if err == nil {        return Skip()    }    return Field{Key: key, Type: zapcore.ErrorType, Interface: err}}type errArray []errorfunc (errs errArray) MarshalLogArray(arr zapcore.ArrayEncoder) error {    for i := range errs {        if errs[i] == nil {            continue        }        // To represent each error as an object with an "error" attribute and        // potentially an "errorVerbose" attribute, we need to wrap it in a        // type that implements LogObjectMarshaler. To prevent this from        // allocating, pool the wrapper type.        elem := _errArrayElemPool.Get().(*errArrayElem)        elem.error = errs[i]        arr.AppendObject(elem)        elem.error = nil    
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值