log method

void log(
  1. String message
)

Log an informational message to Grinder's output.

Implementation

void log(String message) {
  List lines = message.trimRight().split('\n');
  grinder.log("  ${lines.join('\n  ')}");
}