logDebug static method

void logDebug(
  1. String message, {
  2. Map<String, Object?>? attributes,
})

Implementation

static void logDebug(String message, {Map<String, Object?>? attributes}) {
  _logger?.debug(message, attributes: attributes ?? {});
}