systemLog static method

void systemLog(
  1. String text
)

systemLog Logs to console in white, LOG_LEVEL: 0 - 50

Implementation

static void systemLog(String text) {
  _writeLog(text: text, label: "SYSTEM LOG", color: LogColor.white);
}