Class Log


  • public class Log
    extends Object
    To avoid dependencies on logging frameworks, we have invented yet another logging framework :-)

    See a blog about this

    • Constructor Detail

      • Log

        public Log()
    • Method Detail

      • setAdapter

        public static void setAdapter​(Log.Adapter adapter)
        Change how logging is handled. You can set your own implementation that forwards to your logging library.
      • error

        public static void error​(Throwable throwable)
        For drawing attention to an error.
      • error

        @SafeVarargs
        public static void error​(String format,
                                 Supplier<Object>... args)
        For drawing attention to an error that you don't have an exception for.