Package org.hibernate.internal.log
Interface ConnectionInfoLogger
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Subinterfaces:
C3P0MessageLogger,ProxoolMessageLogger
@MessageLogger(projectCode="HHH") @ValidIdRange(min=10001001, max=10001500) public interface ConnectionInfoLogger extends org.jboss.logging.BasicLogger
-
-
Field Summary
Fields Modifier and Type Field Description static ConnectionInfoLoggerINSTANCEStatic access to the logging instancestatic StringLOGGER_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleaningUpConnectionPool(String info)voidconfigureConnectionPool(String type)voidjdbcDriverNotSpecified()voidlogConnectionInfoDetails(String databaseConnectionInfo)voidunableToClosePooledConnection(SQLException e)voidunableToDestroyConnectionPool(Exception e)voidunableToInstantiateConnectionPool(Exception e)voidusingHibernateBuiltInConnectionPool()-
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
-
INSTANCE
static final ConnectionInfoLogger INSTANCE
Static access to the logging instance
-
-
Method Detail
-
usingHibernateBuiltInConnectionPool
@LogMessage(level=WARN) @Message(value="Using built-in connection pool (not intended for production use)", id=10001002) void usingHibernateBuiltInConnectionPool()
-
logConnectionInfoDetails
@LogMessage(level=INFO) @Message(value="Database info:\n%s", id=10001005) void logConnectionInfoDetails(String databaseConnectionInfo)
-
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()
-
cleaningUpConnectionPool
@LogMessage(level=DEBUG) @Message(value="Cleaning up connection pool [%s]", id=10001008) void cleaningUpConnectionPool(String info)
-
unableToClosePooledConnection
@LogMessage(level=WARN) @Message(value="Problem closing pooled connection", id=10001009) void unableToClosePooledConnection(@Cause SQLException e)
-
unableToDestroyConnectionPool
@LogMessage(level=WARN) @Message(value="Could not destroy connection pool", id=10001010) void unableToDestroyConnectionPool(@Cause Exception e)
-
unableToInstantiateConnectionPool
@LogMessage(level=DEBUG) @Message(value="Could not instantiate connection pool", id=10001011) void unableToInstantiateConnectionPool(@Cause Exception e)
-
configureConnectionPool
@LogMessage(level=DEBUG) @Message(value="Configuring connection pool [%s]", id=10001012) void configureConnectionPool(String type)
-
-