Interface AgroalLogger
-
- All Superinterfaces:
org.jboss.logging.BasicLogger
- All Known Implementing Classes:
AgroalLogger_$logger
@MessageLogger(projectCode="WFLYAG", length=4) public interface AgroalLogger extends org.jboss.logging.BasicLogger- Author:
- Luis Barreiro
-
-
Field Summary
Fields Modifier and Type Field Description static AgroalLoggerDRIVER_LOGGERstatic AgroalLoggerPOOL_LOGGERstatic AgroalLoggerSERVICE_LOGGER
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddingDeploymentProcessors()org.jboss.msc.service.StartExceptiondatasourceStartException(SQLException cause, String dataSourceName)voiddriverLoaded(String className, String driverName)voidflushOperation(io.agroal.api.AgroalDataSource.FlushMode mode)org.jboss.msc.service.StartExceptioninvalidAuthentication(Throwable cause, String dataSourceName)org.jboss.as.controller.OperationFailedExceptioninvalidConnection(SQLException cause, String dataSourceName)org.jboss.msc.service.StartExceptioninvalidConnectionProvider()org.jboss.msc.service.StartExceptioninvalidCredentialSourceSupplier(Throwable cause, String dataSourceName)org.jboss.as.server.deployment.DeploymentUnitProcessingExceptioninvalidDeploymentConnectionProvider()org.jboss.msc.service.StartExceptioninvalidXAConnectionProvider()org.jboss.as.controller.OperationFailedExceptionjndiNameInvalidFormat()org.jboss.as.controller.OperationFailedExceptionjndiNameShouldValidate()org.jboss.as.server.deployment.DeploymentUnitProcessingExceptionloadClassDeploymentException(Throwable cause, String className)IllegalArgumentExceptionloadClassException(Throwable cause, String className)IllegalArgumentExceptionloadModuleException(Throwable cause, String moduleName)org.jboss.as.server.deployment.DeploymentUnitProcessingExceptionmissingAttributeInDatasourceMetadata(String attributeName)org.jboss.msc.service.StartExceptionmissingTransactionManager()voidpoolWarning(String datasourceName, String warn)voidstartedDataSource(String datasource, String jndiName)voidstartedXADataSource(String datasource, String jndiName)voidstoppedDataSource(String datasource)voidstoppedXADataSource(String datasource)org.jboss.as.controller.OperationFailedExceptionunknownDatasourceServiceType(String serviceType)org.jboss.msc.service.StartExceptionxaDatasourceStartException(SQLException cause, String dataSourceName)-
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
-
DRIVER_LOGGER
static final AgroalLogger DRIVER_LOGGER
-
SERVICE_LOGGER
static final AgroalLogger SERVICE_LOGGER
-
POOL_LOGGER
static final AgroalLogger POOL_LOGGER
-
-
Method Detail
-
addingDeploymentProcessors
@LogMessage(level=INFO) @Message(id=1, value="Adding deployment processors for DataSourceDefinition annotation and resource-ref entries") void addingDeploymentProcessors()
-
startedDataSource
@LogMessage(level=INFO) @Message(id=101, value="Started datasource \'%s\' bound to [%s]") void startedDataSource(String datasource, String jndiName)
-
stoppedDataSource
@LogMessage(level=INFO) @Message(id=102, value="Stopped datasource \'%s\'") void stoppedDataSource(String datasource)
-
startedXADataSource
@LogMessage(level=INFO) @Message(id=103, value="Started xa-datasource \'%s\' bound to [%s]") void startedXADataSource(String datasource, String jndiName)
-
stoppedXADataSource
@LogMessage(level=INFO) @Message(id=104, value="Stopped xa-datasource \'%s\'") void stoppedXADataSource(String datasource)
-
datasourceStartException
@Message(id=105, value="Exception starting datasource \'%s\'") org.jboss.msc.service.StartException datasourceStartException(@Cause SQLException cause, String dataSourceName)
-
xaDatasourceStartException
@Message(id=106, value="Exception starting xa-datasource \'%s\'") org.jboss.msc.service.StartException xaDatasourceStartException(@Cause SQLException cause, String dataSourceName)
-
invalidConnectionProvider
@Message(id=107, value="Invalid connection provider. Either a java.sql.Driver or javax.sql.DataSource implementation is required. Fix the connection-provider for the driver") org.jboss.msc.service.StartException invalidConnectionProvider()
-
invalidXAConnectionProvider
@Message(id=108, value="An xa-datasource requires a javax.sql.XADataSource as connection provider. Fix the connection-provider for the driver") org.jboss.msc.service.StartException invalidXAConnectionProvider()
-
missingTransactionManager
@Message(id=109, value="Could not start datasource: transaction manager is missing") org.jboss.msc.service.StartException missingTransactionManager()
-
invalidAuthentication
@Message(id=110, value="Error obtaining credentials from authentication context for datasource \'%s\'") org.jboss.msc.service.StartException invalidAuthentication(@Cause Throwable cause, String dataSourceName)
-
invalidCredentialSourceSupplier
@Message(id=111, value="CredentialSourceSupplier for datasource \'%s\' is invalid") org.jboss.msc.service.StartException invalidCredentialSourceSupplier(@Cause Throwable cause, String dataSourceName)
-
flushOperation
@LogMessage(level=INFO) @Message(id=201, value="Performing flush operation, mode %s") void flushOperation(io.agroal.api.AgroalDataSource.FlushMode mode)
-
unknownDatasourceServiceType
@Message(id=301, value="Unknown datasource service of type: %s") org.jboss.as.controller.OperationFailedException unknownDatasourceServiceType(String serviceType)
-
invalidConnection
@Message(id=302, value="Invalid connection in \'%s\'") org.jboss.as.controller.OperationFailedException invalidConnection(@Cause SQLException cause, String dataSourceName)
-
jndiNameInvalidFormat
@Message(id=303, value="JNDI name have to start with java:/ or java:jboss/") org.jboss.as.controller.OperationFailedException jndiNameInvalidFormat()
-
jndiNameShouldValidate
@Message(id=304, value="JNDI name shouldn\'t include \'//\' or end with \'/\'") org.jboss.as.controller.OperationFailedException jndiNameShouldValidate()
-
invalidDeploymentConnectionProvider
@Message(id=401, value="Invalid connection provider. Either a java.sql.Driver or javax.sql.DataSource implementation is required. Fix the connection-provider for the driver") org.jboss.as.server.deployment.DeploymentUnitProcessingException invalidDeploymentConnectionProvider()
-
loadClassDeploymentException
@Message(id=402, value="Failed to load connection provider class \'%s\'") org.jboss.as.server.deployment.DeploymentUnitProcessingException loadClassDeploymentException(@Cause Throwable cause, String className)
-
missingAttributeInDatasourceMetadata
@Message(id=403, value="Element <data-source> must provide attribute \'%s\'") org.jboss.as.server.deployment.DeploymentUnitProcessingException missingAttributeInDatasourceMetadata(String attributeName)
-
driverLoaded
@LogMessage(level=INFO) @Message(id=501, value="Loaded class %s for driver \'%s\'") void driverLoaded(String className, String driverName)
-
loadModuleException
@Message(id=502, value="Failed to load driver module \'%s\'") IllegalArgumentException loadModuleException(@Cause Throwable cause, String moduleName)
-
loadClassException
@Message(id=503, value="Failed to load driver class \'%s\'") IllegalArgumentException loadClassException(@Cause Throwable cause, String className)
-
-