cst_encode_log_entry method
Implementation
@protected
JSAny cst_encode_log_entry(LogEntry raw) {
// Codec=Cst (C-struct based), see doc to use other codecs
return [
cst_encode_i_64(raw.timeMillis),
cst_encode_i_32(raw.level),
cst_encode_String(raw.tag),
cst_encode_String(raw.msg)
].jsify()!;
}