d static method

void d(
  1. String value
)

Logs a debug message.

Example:

LoggerUtil.d("Debug info");

Implementation

static void d(String value) {
  _logger.d(value);
}