Hello I want to use zap global logger
right now I am using like this
zap.L().Error("error receive",
zap.Error(err),
zap.String("uuid", msg.Id)
zap.String("msg_f", msg_f),
)
but the only problem is I am getting errors because of types of uuid and msg
type Message struct {
Id uuid.UUID
}
and msg_f type is []byte my question how can I print them but I don't what should I use