-
- All Implemented Interfaces:
public interface LoggerPortA Logger is used to log messages for a specific system or application component.
-
-
Method Summary
-
-
Method Detail
-
log
abstract <E extends Throwable> Unit log(LoggingLevel level, E exception, Function1<E, Object> message)
Log a message, with associated exception information.
- Parameters:
level- One of the message level identifiers, e.g., TRACE.exception- The exception associated with log message.message- The required message to log.
-
log
abstract Unit log(LoggingLevel level, Function0<Object> message)
Log a message.
- Parameters:
level- One of the message level identifiers, e.g., TRACE.message- The required message to log.
-
-
-
-