Package 

Class TaggedLogger


  • 
    public final class TaggedLogger
    
                        

    Represents a tagged logger.

    • Method Detail

      • e

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

        Send a ERROR log message.

        Parameters:
        throwable - An exception to log.
        message - The function returning a message you would like logged.
      • e

         final Unit e(Function0<String> message)

        Send a ERROR log message.

        Parameters:
        message - The function returning a message you would like logged.
      • w

         final Unit w(Function0<String> message)

        Send a WARN log message.

        Parameters:
        message - The function returning a message you would like logged.
      • i

         final Unit i(Function0<String> message)

        Send a INFO log message.

        Parameters:
        message - The function returning a message you would like logged.
      • d

         final Unit d(Function0<String> message)

        Send a DEBUG log message.

        Parameters:
        message - The function returning a message you would like logged.
      • v

         final Unit v(Function0<String> message)

        Send a VERBOSE log message.

        Parameters:
        message - The function returning a message you would like logged.