Package 

Object StreamLog

    • Method Detail

      • e

         final Unit e(String tag, Throwable throwable, Function0<String> message)

        Send a ERROR log message.

        Parameters:
        tag - Used to identify the source of a log message.
        throwable - An exception to log.
        message - The function returning a message you would like logged.
      • e

         final Unit e(String tag, Function0<String> message)

        Send a ERROR log message.

        Parameters:
        tag - Used to identify the source of a log message.
        message - The function returning a message you would like logged.
      • w

         final Unit w(String tag, Function0<String> message)

        Send a WARN log message.

        Parameters:
        tag - Used to identify the source of a log message.
        message - The function returning a message you would like logged.
      • i

         final Unit i(String tag, Function0<String> message)

        Send a INFO log message.

        Parameters:
        tag - Used to identify the source of a log message.
        message - The function returning a message you would like logged.
      • d

         final Unit d(String tag, Function0<String> message)

        Send a DEBUG log message.

        Parameters:
        tag - Used to identify the source of a log message.
        message - The function returning a message you would like logged.
      • v

         final Unit v(String tag, Function0<String> message)

        Send a VERBOSE log message.

        Parameters:
        tag - Used to identify the source of a log message.
        message - The function returning a message you would like logged.