n method

void n(
  1. Object? referer,
  2. String msg, [
  3. dynamic error,
  4. StackTrace? stackTrace,
])

publish a note log message. In other log frameworks, this is often called info

Implementation

void n(Object? referer, String msg,
        [dynamic error, StackTrace? stackTrace]) =>
    log(LogLevel.note, referer, msg, error, stackTrace);