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(wrapText(title),
        error: wrapText(message), stackTrace: stackTrace);
  }
}