logInfo static method

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

Implementation

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