v static method

void v(
  1. String text
)

Logs a verbose-level message.

Only prints when logging is enabled and the app is in debug mode.

Implementation

static void v(String text) {
  if (_enableLogs) {
    _printVerbose(getFormattedText(text));
  }
}