bug method

void bug(
  1. String msg
)

Implementation

void bug(String msg) {
  if (kReleaseMode) return;

  logger.e('[$tag]: $msg');
}