Interface JdbcBatchLogging

All Superinterfaces:
org.jboss.logging.BasicLogger

@MessageLogger(projectCode="HHH") @ValidIdRange(min=100501, max=101000) @Internal public interface JdbcBatchLogging extends org.jboss.logging.BasicLogger
Subsystem logging related to JDBC batch execution
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final JdbcBatchLogging
     
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    abortBatch(String batchKey)
     
    void
    addToBatch(int batchPosition, int batchSize, String batchKey)
     
    void
     
    void
    batchingEnabled(int batchSize)
     
    void
    batchSuccessUnknown(int batchPosition)
     
    void
     
    void
    createBatch(int batchSize, String batchKey)
     
    void
    emptyBatch(String batchKey)
     
    void
    executeBatch(int batchPosition, int batchSize, String batchKey)
     
    void
     
    void
     
    void
     

    Methods inherited from interface org.jboss.logging.BasicLogger

    debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
  • Field Details

  • Method Details

    • batchingEnabled

      @LogMessage(level=INFO) @Message(id=100501, value="Automatic JDBC statement batching enabled (maximum batch size %s)") void batchingEnabled(int batchSize)
    • unableToReleaseBatchStatement

      @LogMessage(level=WARN) @Message(id=100502, value="Unable to release JDBC batch statement") void unableToReleaseBatchStatement()
    • batchContainedStatementsOnRelease

      @LogMessage(level=INFO) @Message(id=100503, value="JDBC batch still contained JDBC statements on release") void batchContainedStatementsOnRelease()
    • createBatch

      @LogMessage(level=TRACE) @Message("Created JDBC batch (%s) - [%s]") void createBatch(int batchSize, String batchKey)
    • addToBatch

      @LogMessage(level=TRACE) @Message("Adding to JDBC batch (%s / %s) - [%s]") void addToBatch(int batchPosition, int batchSize, String batchKey)
    • executeBatch

      @LogMessage(level=TRACE) @Message("Executing JDBC batch (%s / %s) - [%s]") void executeBatch(int batchPosition, int batchSize, String batchKey)
    • conditionallyExecuteBatch

      @LogMessage(level=TRACE) @Message("Conditionally executing JDBC batch - [%s]") void conditionallyExecuteBatch(String batchKey)
    • abortBatch

      @LogMessage(level=TRACE) @Message("Aborting JDBC batch - [%s]") void abortBatch(String batchKey)
    • usingStandardBatchBuilder

      @LogMessage(level=TRACE) @Message("Using standard JDBC batch builder") void usingStandardBatchBuilder()
    • emptyBatch

      @LogMessage(level=TRACE) @Message("No statements to execute in JDBC batch - [%s]") void emptyBatch(String batchKey)
    • noPreparedStatements

      @LogMessage(level=TRACE) @Message("PreparedStatementDetails did not contain PreparedStatement on releaseStatements: %s") void noPreparedStatements(String sqlString)
    • batchSuccessUnknown

      @LogMessage(level=TRACE) @Message("Success of batch update unknown: %s") void batchSuccessUnknown(int batchPosition)