public interface MigrationLog
Logging support for the 8.1 InternalDB Record to 8.3 Resource migration. Log messages here are sent both to the SLF4J logging system and accummulated into a data structure that will be stored in a time-stamped markdown formatted log file to aid in troubleshooting the 8.3 migration process.
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Logs an error message to the migration log without an associated exception.
    void
    Logs an error message to the migration log.
    void
    Logs an info or warning message to the migration log.
  • Method Details

    • strategyMessage

      void strategyMessage(String message)
      Logs an info or warning message to the migration log.
    • strategyError

      void strategyError(String message, Throwable e)
      Logs an error message to the migration log.
    • strategyError

      default void strategyError(String message)
      Logs an error message to the migration log without an associated exception. Use this when the cause is fully described by the message and a stack trace would only add noise.