@MessageLogger(projectCode="JBAS")
public interface ConnectorLogger
extends org.jboss.logging.BasicLogger
Modifier and Type | Field and Description |
---|---|
static ConnectorLogger |
DEPLOYER_JDBC_LOGGER
A logger with the category
org.jboss.as.connector.deployers.jdbc . |
static ConnectorLogger |
DEPLOYMENT_CONNECTOR_LOGGER
A logger with the category
org.jboss.as.deployment.connector . |
static ConnectorLogger |
DEPLOYMENT_CONNECTOR_REGISTRY_LOGGER
A logger with the category
org.jboss.as.deployment.connector.registry . |
static ConnectorLogger |
DS_DEPLOYER_LOGGER
A logger with the category
org.jboss.as.connector.deployer.dsdeployer . |
static ConnectorLogger |
MDR_LOGGER
A logger with the category
org.jboss.as.connector.mdr . |
static ConnectorLogger |
ROOT_LOGGER
The root logger with a category of the default package.
|
static ConnectorLogger |
SUBSYSTEM_DATASOURCES_LOGGER
A logger with the category
org.jboss.as.connector.subsystems.datasources . |
static ConnectorLogger |
SUBSYSTEM_RA_LOGGER
A logger with the category
org.jboss.as.connector.subsystems.resourceadapters . |
Modifier and Type | Method and Description |
---|---|
void |
boundDataSource(String jndiName)
Logs an informational message indicating the data source has been bound.
|
void |
boundJca(String description,
String jndiName)
Logs an informational message indicating the JCA bound the object represented by the
description
parameter. |
void |
cannotInstantiateDriverClass(String driverClassName,
Throwable reason)
Logs a warning message indicating inability to instantiate the driver class.
|
OperationFailedException |
classNameNullForMoreAO() |
OperationFailedException |
classNameNullForMoreCD() |
void |
deployingCompliantJdbcDriver(Class<? extends Driver> driver,
int majorVersion,
int minorVersion)
Logs an informational message indicating the JDBC driver is compliant.
|
void |
deployingNonCompliantJdbcDriver(Class<? extends Driver> driver,
int majorVersion,
int minorVersion)
Logs an informational message indicating the JDBC driver is non-compliant.
|
OperationFailedException |
driverNameAndResourceNameNotEquals(String driverName,
String resourceName) |
void |
driversElementNotSupported(String deploymentName) |
void |
registeredAdminObject(String jndiName)
Logs an informational message indicating an admin object was registered.
|
void |
registeredConnectionFactory(String jndiName)
Logs an informational message indicating the JNDI connection factory was registered.
|
void |
startingService(org.jboss.msc.service.ServiceName serviceName)
Logs an informational message indicating the service, represented by the
serviceName parameter, is
starting. |
void |
startingSubsystem(String subsystem,
String version)
Logs an informational message indicating the subsystem, represented by the
subsystem parameter, is
starting. |
void |
unboundDataSource(String jndiName)
Logs an informational message indicating the data source has been unbound.
|
void |
unboundJca(String description,
String jndiName)
Logs an informational message indicating the JCA inbound the object represented by the
description
parameter. |
debug, debug, debug, debug, 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, 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
static final ConnectorLogger ROOT_LOGGER
static final ConnectorLogger DEPLOYER_JDBC_LOGGER
org.jboss.as.connector.deployers.jdbc
.static final ConnectorLogger DEPLOYMENT_CONNECTOR_LOGGER
org.jboss.as.deployment.connector
.static final ConnectorLogger DEPLOYMENT_CONNECTOR_REGISTRY_LOGGER
org.jboss.as.deployment.connector.registry
.static final ConnectorLogger DS_DEPLOYER_LOGGER
org.jboss.as.connector.deployer.dsdeployer
.static final ConnectorLogger MDR_LOGGER
org.jboss.as.connector.mdr
.static final ConnectorLogger SUBSYSTEM_DATASOURCES_LOGGER
org.jboss.as.connector.subsystems.datasources
.static final ConnectorLogger SUBSYSTEM_RA_LOGGER
org.jboss.as.connector.subsystems.resourceadapters
.@LogMessage(level=INFO) @Message(id=10400, value="Bound data source [%s]") void boundDataSource(String jndiName)
jndiName
- the JNDI name@LogMessage(level=INFO) @Message(id=10401, value="Bound JCA %s [%s]") void boundJca(String description, String jndiName)
description
parameter.description
- the description of what was bound.jndiName
- the JNDI name.@LogMessage(level=WARN) @Message(id=10402, value="Unable to instantiate driver class \"%s\": %s") void cannotInstantiateDriverClass(String driverClassName, Throwable reason)
driverClassName
- the driver class name.reason
- the reason the the driver could not be instantiated.@LogMessage(level=INFO) @Message(id=10403, value="Deploying JDBC-compliant driver %s (version %d.%d)") void deployingCompliantJdbcDriver(Class<? extends Driver> driver, int majorVersion, int minorVersion)
driver
- the JDBC driver class.majorVersion
- the major version of the driver.minorVersion
- the minor version of the driver.@LogMessage(level=INFO) @Message(id=10404, value="Deploying non-JDBC-compliant driver %s (version %d.%d)") void deployingNonCompliantJdbcDriver(Class<? extends Driver> driver, int majorVersion, int minorVersion)
driver
- the non-compliant JDBC driver class.majorVersion
- the major version of the driver.minorVersion
- the minor version of the driver.@LogMessage(level=INFO) @Message(id=10405, value="Registered admin object at %s") void registeredAdminObject(String jndiName)
jndiName
- the JNDI name.@LogMessage(level=INFO) @Message(id=10406, value="Registered connection factory %s") void registeredConnectionFactory(String jndiName)
jndiName
- the JNDI connection factory.@LogMessage(level=INFO) @Message(id=10407, value="Starting service %s") void startingService(org.jboss.msc.service.ServiceName serviceName)
serviceName
parameter, is
starting.serviceName
- the name of the service that is starting.@LogMessage(level=INFO) @Message(id=10408, value="Starting %s Subsystem (%s)") void startingSubsystem(String subsystem, String version)
subsystem
parameter, is
starting.subsystem
- the subsystem that is starting.version
- the version of the subsystem.@LogMessage(level=INFO) @Message(id=10409, value="Unbound data source [%s]") void unboundDataSource(String jndiName)
jndiName
- the JNDI name@LogMessage(level=INFO) @Message(id=10410, value="Unbound JCA %s [%s]") void unboundJca(String description, String jndiName)
description
parameter.description
- the description of what was unbound.jndiName
- the JNDI name.@LogMessage(level=WARN) @Message(id=10411, value="in standalone -ds.xml deployments aren\'t supported: Ignoring %s") void driversElementNotSupported(String deploymentName)
@Message(id=10412, value="the attribute class-name cannot be null for more than one connection-definition") OperationFailedException classNameNullForMoreCD()
@Message(id=10413, value="the attribute class-name cannot be null for more than one admin-object") OperationFailedException classNameNullForMoreAO()
@Message(id=10414, value="the attribute driver-name (%s) cannot be different from driver resource name (%s)") OperationFailedException driverNameAndResourceNameNotEquals(String driverName, String resourceName)
Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.