flogImportant function

void flogImportant(
  1. Object? object
)

Use flogImportant to produce logs that may require additional attention

use cases:

  • unexpected events
  • significant info
  • unwanted events

Implementation

void flogImportant(Object? object) {
  if (_delegate.flogImportant != null) _delegate.flogImportant!(object);
  _filterAndLog(_FlogTag.important, object);
}