flush method

void flush()
override

Implementation

void flush() {
  _log.fine("Flushing");

  //Print will automatically add a newline
  print(_buffer);

  _buffer.clear();
}