info method

  1. @override
void info(
  1. String? correlationId,
  2. String message, [
  3. List? args
])
override

Logs an important information message

  • correlationId (optional) transaction id to trace execution through call chain.
  • message a human-readable message to log.
  • args arguments to parameterize the message.

Implementation

@override
void info(String? correlationId, String message, [List? args]) {
  _formatAndWrite(LogLevel.Info, correlationId, null, message, args);
}