logInfo static method

void logInfo(
  1. String message
)

Implementation

static void logInfo(String message) {
  if (__logLevel >= INFO) {
    print('$__TAG Info: $message');
  }
}