logVerbose static method

void logVerbose(
  1. String message
)

Implementation

static void logVerbose(String message) {
  if (__logLevel >= VERBOSE) {
    print('$__TAG Verbose: $message');
  }
}