v static method
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);
}
}