flogInfo function

void flogInfo(
  1. Object? object, [
  2. Object? feature
])

Use flogInfo to produce informative logs.

by adding a feature, this log will be filtered based off of the features that you are allowing to print via Flog.setUp(features: [...])

leave feature null to always print to console

Implementation

void flogInfo(Object? object, [Object? feature]) {
  if (_delegate.flogInfo != null) _delegate.flogInfo!(object, feature);
  _filterAndLog(_FlogTag.info, object, feature: feature);
}