Package 

Interface Logger


  • 
    public interface Logger
    
                        

    The interface for base logging with 3 levels: info, debug and error.

    • Method Summary

      Modifier and Type Method Description
      abstract Unit i(String text) Info level of logging.
      abstract Unit i(String tag, String text) Info level of logging with tag.
      abstract Unit d(String text) Debug level of logging.
      abstract Unit d(String tag, String text) Debug level of logging with tag.
      abstract Unit w(String text) Warning level of logging.
      abstract Unit w(String tag, String text) Warning level of logging.
      abstract Unit e(String text) Error level of logging.
      abstract Unit e(String tag, String text) Error level of logging with tag.
      • Methods inherited from class com.kaspersky.kaspresso.logger.Logger

        equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait