Interface LogWriter


public interface LogWriter
Something that logs can be written to.
  • Method Summary

    Modifier and Type Method Description
    void append​(String log)
    Appends a line to a log.
  • Method Details

    • append

      void append​(String log)
      Appends a line to a log.
      Parameters:
      log - The line to append. Should include the terminating newline.