Class LogUtils

java.lang.Object
me.datafox.dfxengine.utils.LogUtils

public class LogUtils extends Object
Utilities for logging, mainly for logging exceptions
  • 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 - logger
      message - exception message
      cause - exception cause
      constructor - 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 - logger
      message - exception message
      constructor - function to instantiate the exception
      Returns:
      exception instantiated with the provided function