logDebug method

void logDebug([
  1. String tag = 'DEBUG'
])

Implementation

void logDebug([String tag = 'DEBUG']) {
  ConsoleLogger.debug(toString(), tag: tag);
}