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 Details

  • Method Details

    • 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)
    • poolWarning

      @LogMessage(level=WARN) @Message(id=601, value="%s: %s") void poolWarning(String datasourceName, String warn)