Package com.marigold.sdk.interfaces
Interface Logger
-
- All Implemented Interfaces:
public interface Logger
Logging interface to capture logging coming from the Marigold SDK.
-
-
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. -
-
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
-
-
-
-