info static method
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);
}
Log an informational message
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);
}