d method

void d(
  1. String tag,
  2. String? message, {
  3. LogType logType = LogType.Info,
})

Is logging a debug log. This will only be logged if the customer activated the debug logs

Implementation

void d(String tag, String? message, {LogType logType = LogType.Info}) {
  if (_definedLogLevel == LogLevel.Debug) {
    _logMessage(tag, message, logType);
  }
}