debug static method

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

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

Implementation

static void debug(String tag, String msg) => _log('DEBUG', tag, msg);