Interface ILogger


  • public interface ILogger
    Interface for apps to configure the external logging and implement the callback to designate the output of the log messages.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void log​(int logLevel, java.lang.String message)
      Interface method for apps to hand off each log message as it's generated.
    • Method Detail

      • log

        void log​(int logLevel,
                 @Nullable
                 java.lang.String message)
        Interface method for apps to hand off each log message as it's generated.
        Parameters:
        logLevel - The Logger.LogLevel for the generated message.
        message - The detailed message.