Package io.micronaut.security.utils
Class LoggingUtils
- java.lang.Object
-
- io.micronaut.security.utils.LoggingUtils
-
@Internal public final class LoggingUtils extends java.lang.ObjectUtility methods to avoid verbosity of logging statements. Mostly used to help reduce the Cognitive Complexity of some methods.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voiddebug(org.slf4j.Logger logger, java.lang.String message, java.lang.Object... args)Logs a message at the DEBUG level (only if it's enabled) according to the specified format and arguments.
-
-
-
Method Detail
-
debug
public static void debug(org.slf4j.Logger logger, java.lang.String message, java.lang.Object... args)Logs a message at the DEBUG level (only if it's enabled) according to the specified format and arguments.- Parameters:
logger- the SLF4J loggermessage- the format stringargs- a list of arguments
-
-