info method

Future<void> info(
  1. dynamic message, {
  2. LogEvent? event,
})

Logs a message or event using the configured strategies.

Throws NotInitializedError if the logger has not been initialized.

message - The message to log. event - Optional. The specific log event associated with the message.

Implementation

Future<void> info(dynamic message, {LogEvent? event}) async {
  await log(message, event: event);
}