logStep method

void logStep(
  1. String message
)

Announces a step that is starting, prefixed with in bold cyan.

Implementation

void logStep(String message) => _emit(
      message,
      level: LogLevel.info,
      symbol: LogSymbols.step,
      style: '${_Ansi.bold}${_Ansi.cyan}',
    );