Package com.marigold.sdk.interfaces
Interface Logger
-
- All Implemented Interfaces:
public interface LoggerLogging interface to capture logging coming from the Marigold SDK.
-
-
Method Summary
Modifier and Type Method Description abstract Integerd(String tag, String message)Send a DEBUG log message. abstract Integeri(String tag, String message)Send an INFO log message. abstract Integere(String tag, String message)Send an ERROR log message. abstract Integerw(String tag, String message)Send a WARNING log message abstract Integerv(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
-
-
-
-