Interface SpiLogger

  • All Known Implementing Classes:
    DSpiLogger

    public interface SpiLogger
    Logger for SQL, TXN and Summary logging.

    In general at runtime this uses SLF4J Logger but this abstraction allows us to capture the logged SQL during testing such that we can assert against the executed sql if desired.

    • Method Detail

      • isDebug

        boolean isDebug()
        Is debug logging enabled.
      • isTrace

        boolean isTrace()
        Is trace logging enabled.
      • debug

        void debug​(String msg)
        Log a debug level message.
      • trace

        void trace​(String msg)
        Log a trace level message.