logInMagenta function

void logInMagenta(
  1. String text
)

Will print the text in magenta color to the console.

Implementation

void logInMagenta(String text) {
  dev.log(LogColor.magenta.anciCode + text + LogColor.resetColor.anciCode);
}