d method
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);
}
}