printAll method

void printAll(
  1. String msg
)

Implementation

void printAll(String msg) {
  msg.toString().split("\n").forEach(logPrint);
}