Interface Logger


public interface Logger
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Logs an error to console
    void
    Logs an error to console
    void
    Logs an informational string to console
    void
    Logs a warning to console
  • Method Details

    • info

      void info(String s)
      Logs an informational string to console
      Parameters:
      s - The string to log
    • warn

      void warn(String s)
      Logs a warning to console
      Parameters:
      s - The string to log
    • error

      void error(String s)
      Logs an error to console
      Parameters:
      s - The string to log
    • error

      void error(String s, Throwable t)
      Logs an error to console
      Parameters:
      s - The string to log
      t - The exception thrown by this error