addLogLine method

void addLogLine (
  1. dynamic msg
)

Adds msg to the Logger messages.color

If msg is a Text instance it is added as is. This can be used to add formatted text with font properties or color.

Otherwise the toString value of msg is added.

Implementation

void addLogLine(var msg) {(_sm.getHot(_logKey) as _LoggerState).addLogLine(msg);}