Package 

Interface ILogger

    • Method Summary

      Modifier and Type Method Description
      abstract int getMinLogPriority() Returns the minimum log priority that should be logged.
      abstract void log(int priority, @NonNull() String message) Logs the given message with given log priority into the all managed devices' log session.
      abstract void log(int priority, @StringRes() int messageRes, @Nullable() Array<Object> params) Logs the given message with given log priority into the all managed devices' log session.
      • Methods inherited from class java.lang.Object

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

      • getMinLogPriority

         abstract int getMinLogPriority()

        Returns the minimum log priority that should be logged.

      • log

         abstract void log(int priority, @NonNull() String message)

        Logs the given message with given log priority into the all managed devices' log session.

        Parameters:
        priority - the log priority.
        message - the message to be logged.
      • log

         abstract void log(int priority, @StringRes() int messageRes, @Nullable() Array<Object> params)

        Logs the given message with given log priority into the all managed devices' log session.

        Parameters:
        priority - the log priority.
        messageRes - string resource id.
        params - additional (optional) parameters used to fill the message.