Interface Logger

  • All Known Implementing Classes:
    JUtilLogger

    public interface Logger
    Provides a pluggable Logger interface for the Faas server.
    • Method Detail

      • info

        void info​(String format,
                  Object... args)
        Log the given information level message and arguments.
        Parameters:
        format - the error message format
        args - the message arguments
      • error

        void error​(String format,
                   Object... args)
        Log the given error message and arguments.
        Parameters:
        format - the error message format
        args - the message arguments
      • error

        void error​(Throwable error,
                   String format,
                   Object... args)
        Log the given exception, error message and arguments.
        Parameters:
        error - the exception
        format - the error message format
        args - the message arguments