log static method

void log(
  1. String id,
  2. String message
)

Sends a log message to the worker in the isolate. id is the unique identifier for the worker.

Implementation

static void log(String id, String message) {
  _send(LogMessageCommand(id, message));
}