Package 

Interface Logger

  • All Implemented Interfaces:

    
    public interface Logger
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit setLogLevel(@IntRange(from = 2, to = 7) Integer level)
      abstract Unit v(Throwable throwable, Function0<String> message) Internal logging (log everything)
      abstract Unit d(Throwable throwable, Function0<String> message) Internal logging information (Permutive) debugging.
      abstract Unit i(Throwable throwable, Function0<String> message) Logs information for external developers.
      abstract Unit w(Throwable throwable, Function0<String> message) Logs warnings.
      abstract Unit e(Throwable throwable, Function0<String> message) Logs errors.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • v

         abstract Unit v(Throwable throwable, Function0<String> message)

        Internal logging (log everything)

      • d

         abstract Unit d(Throwable throwable, Function0<String> message)

        Internal logging information (Permutive) debugging. Give general information on what the SDK is doing (persisting/publishing/deleting/processing alias/metric/event/...)

      • i

         abstract Unit i(Throwable throwable, Function0<String> message)

        Logs information for external developers. Use this for printing the current state of the engine, (initializing/processing/shutdown), or the current state of an event/identity.