Interface IHttpServerLogger

  • All Known Implementing Classes:
    ConsoleHttpServerLogger

    public interface IHttpServerLogger
    Defines the http server logger
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void logError​(java.lang.String info, java.lang.Exception e)
      Log a error information
      void logInfo​(java.lang.String info)
      Log an information
      void logWarn​(java.lang.String info, java.lang.Exception e)
      Log a warn information
    • Method Detail

      • logInfo

        void logInfo​(java.lang.String info)
        Log an information
        Parameters:
        info - the information to log
      • logWarn

        void logWarn​(java.lang.String info,
                     java.lang.Exception e)
        Log a warn information
        Parameters:
        info - the warn information to log
        e - the exception or null
      • logError

        void logError​(java.lang.String info,
                      java.lang.Exception e)
        Log a error information
        Parameters:
        info - the error information to log
        e - the exception or null