Package org.hibernate.internal.log
Interface ConnectionPoolingLogger
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Subinterfaces:
C3P0MessageLogger,ProxoolMessageLogger
@MessageLogger(projectCode="HHH") @ValidIdRange(min=10001001, max=10001500) public interface ConnectionPoolingLogger extends org.jboss.logging.BasicLogger
-
-
Field Summary
Fields Modifier and Type Field Description static org.jboss.logging.LoggerCONNECTIONS_LOGGERStatic access to the logging instancestatic ConnectionPoolingLoggerCONNECTIONS_MESSAGE_LOGGERstatic StringLOGGER_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidautoCommitMode(boolean autocommit)voidcleaningUpConnectionPool(String url)voidconnectionProperties(Properties connectionProps)voidhibernateConnectionPoolSize(int poolSize, int minSize)voidjdbcDriverNotSpecified()voidjdbcIsolationLevel(String isolationLevelToString)StringjdbcUrlNotSpecified(String property)voidloadedDriver(String driverClassName)voidloadedDrivers(String loadedDrivers)voidnoDriver(String property)voidunableToCloseConnection(Exception e)voidunableToClosePooledConnection(SQLException e)voidusingHibernateBuiltInConnectionPool()voidusingUrl(String url)-
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 Detail
-
LOGGER_NAME
static final String LOGGER_NAME
- See Also:
- Constant Field Values
-
CONNECTIONS_LOGGER
static final org.jboss.logging.Logger CONNECTIONS_LOGGER
Static access to the logging instance
-
CONNECTIONS_MESSAGE_LOGGER
static final ConnectionPoolingLogger CONNECTIONS_MESSAGE_LOGGER
-
-
Method Detail
-
connectionProperties
@LogMessage(level=INFO) @Message(value="Connection properties: %s", id=10001001) void connectionProperties(Properties connectionProps)
-
usingHibernateBuiltInConnectionPool
@LogMessage(level=WARN) @Message(value="Using built-in connection pool (not intended for production use)", id=10001002) void usingHibernateBuiltInConnectionPool()
-
autoCommitMode
@LogMessage(level=INFO) @Message(value="Autocommit mode: %s", id=10001003) void autoCommitMode(boolean autocommit)
-
jdbcUrlNotSpecified
@Message(value="No JDBC URL specified by property %s", id=10001004) String jdbcUrlNotSpecified(String property)
-
loadedDriver
@LogMessage(level=INFO) @Message(value="Loaded JDBC driver class: %s", id=10001005) void loadedDriver(String driverClassName)
-
noDriver
@LogMessage(level=INFO) @Message(value="No JDBC driver class specified by %s", id=10001010) void noDriver(String property)
-
loadedDrivers
@LogMessage(level=INFO) @Message(value="Loaded JDBC drivers: %s", id=10001011) void loadedDrivers(String loadedDrivers)
-
usingUrl
@LogMessage(level=INFO) @Message(value="Connecting with JDBC URL [%s]", id=10001012) void usingUrl(String url)
-
jdbcDriverNotSpecified
@LogMessage(level=WARN) @Message(id=10001006, value="No JDBC Driver class was specified by property `jakarta.persistence.jdbc.driver`, `hibernate.driver` or `javax.persistence.jdbc.driver`") void jdbcDriverNotSpecified()
-
jdbcIsolationLevel
@LogMessage(level=INFO) @Message(value="JDBC isolation level: %s", id=10001007) void jdbcIsolationLevel(String isolationLevelToString)
-
cleaningUpConnectionPool
@LogMessage(level=INFO) @Message(value="Cleaning up connection pool [%s]", id=10001008) void cleaningUpConnectionPool(String url)
-
unableToClosePooledConnection
@LogMessage(level=WARN) @Message(value="Problem closing pooled connection", id=10001009) void unableToClosePooledConnection(@Cause SQLException e)
-
hibernateConnectionPoolSize
@LogMessage(level=INFO) @Message(value="Connection pool size: %s (min=%s)", id=10001115) void hibernateConnectionPoolSize(int poolSize, int minSize)
-
unableToCloseConnection
@LogMessage(level=ERROR) @Message(value="Error closing connection", id=10001284) void unableToCloseConnection(@Cause Exception e)
-
-