logNote method

void logNote(
  1. String message
)

Logs a de-emphasised aside at the current level.

Use for remarks that stand on their own rather than qualifying the previous line - those belong in logDetail.

Implementation

void logNote(String message) =>
    _emit(message, level: LogLevel.info, style: _Ansi.gray);