Package 

Class LoggerKtxKt

    • Method Summary

      Modifier and Type Method Description
      final static Unit e(Object $self, String message) Prints an error log with the provided message.
      final static Unit d(Object $self, String message) Prints a debug log with the provided message.
      final static Unit i(Object $self, String message) Prints an info log with the provided message.
      final static Unit w(Object $self, String message) Prints a warning log with the provided message.
      final static Unit v(Object $self, String message) Prints a verbose log with the provided message.
      • Methods inherited from class java.lang.Object

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

      • e

         final static Unit e(Object $self, String message)

        Prints an error log with the provided message. Uses the simple name of the calling class as the log tag.

        Parameters:
        message - The message to be logged.
      • d

         final static Unit d(Object $self, String message)

        Prints a debug log with the provided message. Uses the simple name of the calling class as the log tag.

        Parameters:
        message - The message to be logged.
      • i

         final static Unit i(Object $self, String message)

        Prints an info log with the provided message. Uses the simple name of the calling class as the log tag.

        Parameters:
        message - The message to be logged.
      • w

         final static Unit w(Object $self, String message)

        Prints a warning log with the provided message. Uses the simple name of the calling class as the log tag.

        Parameters:
        message - The message to be logged.
      • v

         final static Unit v(Object $self, String message)

        Prints a verbose log with the provided message. Uses the simple name of the calling class as the log tag.

        Parameters:
        message - The message to be logged.