info method

void info(
  1. dynamic msg, {
  2. String? module,
  3. LokiLabel? labels,
})

Logs an info message.

  • msg: The message to log.
  • module: The module name for the log.
  • labels: Additional labels for the log.

Implementation

void info(msg, {String? module, LokiLabel? labels}) => _print(
    msg, Level.info, module, {_level: Level.info.toString(), ...?labels});