Class VariableServiceLogs

java.lang.Object
io.camunda.migrator.impl.logging.VariableServiceLogs

public class VariableServiceLogs extends Object
Centralized logging and constants class for all variable-related operations. Contains all logging statements, error messages, and constants used in variable processing and transformation.
  • Field Details

  • Constructor Details

    • VariableServiceLogs

      public VariableServiceLogs()
  • Method Details

    • logInterceptorWarn

      public static void logInterceptorWarn(String interceptorName, String variableName)
      Logs a warning message for variable interceptor failure.
      Parameters:
      interceptorName - the name of the failed interceptor
      variableName - the name of the variable being processed
    • formatInterceptorWarn

      public static String formatInterceptorWarn(String interceptorName, String variableName)
      Creates a formatted error message for variable interceptor failure.
      Parameters:
      interceptorName - the interceptor class name
      variableName - the variable name
      Returns:
      formatted error message
    • logStartExecution

      public static void logStartExecution(Class<?> transformerClass, String variableName)
      Logs the start of variable transformation execution.
      Parameters:
      transformerClass - the transformer class
      variableName - the variable name being processed
    • logEndExecution

      public static void logEndExecution(Class<?> transformerClass, String variableName)
      Logs the end of variable transformation execution.
      Parameters:
      transformerClass - the transformer class
      variableName - the variable name being processed
    • logConvertingDate

      public static void logConvertingDate(String variableName)
      Logs the start of date variable conversion.
      Parameters:
      variableName - the date variable name
    • logConvertedDate

      public static void logConvertedDate(String name, Object originalValue, String formattedValue)
      Logs the result of date conversion.
      Parameters:
      name - the name of the date variable
      originalValue - the original date value
      formattedValue - the formatted date string