Interface Logger

  • All Implemented Interfaces:

    
    public interface Logger
    
                        

    Logging interface to capture logging coming from the Marigold SDK.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Integer d(String tag, String message) Send a DEBUG log message.
      abstract Integer i(String tag, String message) Send an INFO log message.
      abstract Integer e(String tag, String message) Send an ERROR log message.
      abstract Integer w(String tag, String message) Send a WARNING log message
      abstract Integer v(String tag, String message) Send a VERBOSE log message.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • d

         abstract Integer d(String tag, String message)

        Send a DEBUG log message.

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

        Unused by Marigold

      • i

         abstract Integer i(String tag, String message)

        Send an INFO log message.

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

        Unused by Marigold

      • e

         abstract Integer e(String tag, String message)

        Send an ERROR log message.

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

        Unused by Marigold

      • w

         abstract Integer w(String tag, String message)

        Send a WARNING log message

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

        Unused by Marigold

      • v

         abstract Integer v(String tag, String message)

        Send a VERBOSE log message.

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

        Unused by Marigold