decodeIfBinaryToString - converts a binary formatted log msg to a JSON formatted String Log message.
(in []byte)
| 31 | // decodeIfBinaryToString - converts a binary formatted log msg to a |
| 32 | // JSON formatted String Log message. |
| 33 | func decodeIfBinaryToString(in []byte) string { |
| 34 | return cbor.DecodeIfBinaryToString(in) |
| 35 | } |
| 36 | |
| 37 | func decodeObjectToStr(in []byte) string { |
| 38 | return cbor.DecodeObjectToStr(in) |