debug static method

void debug(
  1. Object msg
)

Implementation

static void debug(Object msg) {
  if (TgoRTC.instance.options.debug) {
    final text = '[DEBUG] $msg';
    developer.log(text, name: 'DEBUG');
    print(text);
  }
}