Class StandardErrorLogHandler

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

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

    • StandardErrorLogHandler

      public StandardErrorLogHandler()
  • 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