-
- All Implemented Interfaces:
public final class LoggingKt
-
-
Method Summary
Modifier and Type Method Description final LoggergetLogger()Default logger for when you feel too lazy to declare one. final static <T extends Any> Ttrace(T $self, String prefix)Uses this T to log a message with a prefix using TRACE level. final static <T extends Any> Tdebug(T $self, String prefix)Uses this T to log a message with a prefix using DEBUG level. final static <T extends Any> Tinfo(T $self, String prefix)Uses this T to log a message with a prefix using INFO level. -
-
Method Detail
-
trace
final static <T extends Any> T trace(T $self, String prefix)
Uses this T to log a message with a prefix using TRACE level.
com.hexagonkt.core.logging.Logger must have TRACE level
TODO Add use case and example in documentation.
- Parameters:
prefix- .
-
debug
final static <T extends Any> T debug(T $self, String prefix)
Uses this T to log a message with a prefix using DEBUG level.
com.hexagonkt.core.logging.Logger must have DEBUG level
TODO Add use case and example in documentation.
- Parameters:
prefix- .
-
-
-
-