v static method

void v(
  1. Object object, {
  2. String? tag,
})

Implementation

static void v(Object object, {String? tag}) {
  if (RxNet.I.logManager.collectLogs) {
    RxNet.I.logManager.addLogs("${tag ?? tagDefault} ${object.toString()}");
  }
  if (_debugMode) {
    if (_isSystemPrint) {
      print("${tag ?? tagDefault} ${object.toString()}");
      return;
    }
    _printLog(tag ?? tagDefault, '', object);
  }
}