Interface Logger


public interface Logger
A basic interface to provide feedback. Note that the logging methods are not call-by-name as a Scala interface would be. We could define a Function0 interface if we find that this is a problem.
  • Method Details

    • ansiCodesSupported

      boolean ansiCodesSupported()
      True if ANSI color codes are understood by this instance.
    • error

      void error(String msg)
    • warn

      void warn(String msg)
    • info

      void info(String msg)
    • debug

      void debug(String msg)
    • trace

      void trace(Throwable t)