logDetail method

void logDetail(
  1. String message
)

Logs de-emphasised information that hangs off the line above it.

Indented one extra level, so artifacts read as belonging to the result they were produced by.

Implementation

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