Package me.datafox.dfxengine.utils
Class LogUtils
java.lang.Object
me.datafox.dfxengine.utils.LogUtils
Utilities for logging, mainly for logging exceptions
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T extends Throwable>
TlogExceptionAndGet
(org.slf4j.Logger logger, String message, Throwable cause, BiFunction<String, Throwable, T> constructor) Logs an error message and throws an exception with that message.static <T extends Throwable>
TlogExceptionAndGet
(org.slf4j.Logger logger, String message, Function<String, T> constructor) Logs an error message and throws an exception with that message.
-
Constructor Details
-
LogUtils
public LogUtils()
-
-
Method Details
-
logExceptionAndGet
public static <T extends Throwable> T logExceptionAndGet(org.slf4j.Logger logger, String message, Throwable cause, BiFunction<String, Throwable, T> constructor) Logs an error message and throws an exception with that message.- Type Parameters:
T
- type of the exception- Parameters:
logger
- loggermessage
- exception messagecause
- exception causeconstructor
- function to instantiate the exception- Returns:
- exception instantiated with the provided function
-
logExceptionAndGet
public static <T extends Throwable> T logExceptionAndGet(org.slf4j.Logger logger, String message, Function<String, T> constructor) Logs an error message and throws an exception with that message.- Type Parameters:
T
- type of the exception- Parameters:
logger
- loggermessage
- exception messageconstructor
- function to instantiate the exception- Returns:
- exception instantiated with the provided function
-