logDebug method

void logDebug(
  1. String msg
)

Logs a message to stdout.

Implementation

void logDebug(String msg) {
  stdout.writeln(msg);
}