Interface SpiTxnLogger


public interface SpiTxnLogger
Per Transaction logging of SQL, TXN and Summary messages.
  • Method Details

    • id

      String id()
    • isLogSql

      boolean isLogSql()
      Is debug logging enabled.
    • isLogSummary

      boolean isLogSummary()
      Is summary logging enabled.
    • sql

      void sql(String msg, Object... args)
      Log a SQL message.
    • sum

      void sum(String msg, Object... args)
      Log a Summary message.
    • txn

      void txn(String msg, Object... args)
      Log a Transaction message.
    • notifyCommit

      void notifyCommit()
      Transaction Committed.
    • notifyQueryOnly

      void notifyQueryOnly()
      Query only transaction completed.
    • notifyRollback

      void notifyRollback(Throwable cause)
      Transaction Rolled back.