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.Logger
CONNECTIONS_LOGGER
Static access to the logging instancestatic ConnectionPoolingLogger
CONNECTIONS_MESSAGE_LOGGER
static String
LOGGER_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
autoCommitMode(boolean autocommit)
void
cleaningUpConnectionPool(String url)
void
connectionProperties(Properties connectionProps)
void
hibernateConnectionPoolSize(int poolSize, int minSize)
void
jdbcDriverNotSpecified(String driver)
void
jdbcIsolationLevel(String isolationLevelToString)
String
jdbcUrlNotSpecified(String property)
void
loadedDriver(String driverClassName)
void
loadedDrivers(String loadedDrivers)
void
noDriver(String property)
void
unableToCloseConnection(Exception e)
void
unableToClosePooledConnection(SQLException e)
void
usingHibernateBuiltInConnectionPool()
void
usingUrl(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(value="No JDBC Driver class was specified by property %s", id=10001006) void jdbcDriverNotSpecified(String driver)
-
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)
-
-