logWarning static method

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

Implementation

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