代码拉取完成,页面将自动刷新
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package grpclogging
import (
"github.com/gogo/protobuf/proto"
"github.com/golang/protobuf/jsonpb"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
)
type protoMarshaler struct {
jsonpb.Marshaler
message proto.Message
}
func (m *protoMarshaler) MarshalJSON() ([]byte, error) {
out, err := m.Marshaler.MarshalToString(m.message)
if err != nil {
return nil, err
}
return []byte(out), nil
}
func ProtoMessage(key string, val interface{}) zapcore.Field {
if pm, ok := val.(proto.Message); ok {
return zap.Reflect(key, &protoMarshaler{message: pm})
}
return zap.Any(key, val)
}
func Error(err error) zapcore.Field {
if err == nil {
return zap.Skip()
}
// Wrap the error so it no longer implements fmt.Formatter. This will prevent
// zap from adding the "verboseError" field to the log record that includes a
// full stack trace.
return zap.Error(struct{ error }{err})
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。