log method

void log (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  ')}");
}