log static method

void log(
  1. String msg
)

Implementation

static void log(String msg) {
  if (debugMsg) {
    print(msg);
  }
}