(dst []byte, c []byte)
| 25 | return cbor.AppendEmbeddedJSON(dst, j) |
| 26 | } |
| 27 | func appendCBOR(dst []byte, c []byte) []byte { |
| 28 | return cbor.AppendEmbeddedCBOR(dst, c) |
| 29 | } |
| 30 | |
| 31 | // decodeIfBinaryToString - converts a binary formatted log msg to a |
| 32 | // JSON formatted String Log message. |
no test coverage detected