logNote method
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);