trace static method

void trace(
  1. String tag,
  2. String msg
)

Emits a trace-level log with the given tag and msg.

Implementation

static void trace(String tag, String msg) => _log('TRACE', tag, msg);