info static method

void info(
  1. String message
)

Log an informational message

Implementation

static void info(String message) {
  if (!enabled) return;
  // Use stderr for status messages as it's not captured when output is piped
  stderr.writeln(message);
}