Class StandardOutputLogHandler

java.lang.Object
dev.prozilla.pine.common.logging.handler.StandardOutputLogHandler
All Implemented Interfaces:
LogHandler

public class StandardOutputLogHandler extends Object implements LogHandler
Standard log handler that uses System.out.
  • Constructor Details

    • StandardOutputLogHandler

      public StandardOutputLogHandler()
  • Method Details

    • log

      public void log()
      Description copied from interface: LogHandler
      Logs an empty line.
      Specified by:
      log in interface LogHandler
    • log

      public void log(boolean x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(char x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(int x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(long x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(float x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(double x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(char[] x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(Object x)
      Specified by:
      log in interface LogHandler
    • log

      public void log(String text)
      Description copied from interface: LogHandler
      Logs a string of text.
      Specified by:
      log in interface LogHandler