debug method

void debug(
  1. String title,
  2. String message, [
  3. StackTrace? stackTrace
])

Implementation

void debug(String title, String message, [StackTrace? stackTrace]) {
  if (LogbotCommonEnvironment.debugLogs) {
    _logger.d(message, wrapText(title), stackTrace);
  }
}