cst_encode_log_entry method

  1. @protected
JSAny cst_encode_log_entry(
  1. LogEntry raw
)

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()!;
}