debug static method

void debug(
  1. String text
)

debug Logs to console in magenta, use for debug prints, LOG_LEVEL: 10

Implementation

static void debug(String text) {
  _writeLog(text: text, label: "DEBUG", color: LogColor.magenta);
}