logInfo method

void logInfo(
  1. String message
)

Logs a neutral message with no prefix and no color.

Plain by design: when everything is highlighted, nothing is.

Implementation

void logInfo(String message) => _emit(message, level: LogLevel.info);