@MessageLogger(projectCode="JBAS")
public interface ControllerLogger
extends org.jboss.logging.BasicLogger
Modifier and Type | Field and Description |
---|---|
static ControllerLogger |
MGMT_OP_LOGGER
Logger for management operation messages.
|
static ControllerLogger |
ROOT_LOGGER
Default root logger with category of the package name.
|
static ControllerLogger |
SERVER_LOGGER
A logger with the category
org.jboss.as.server |
static ControllerLogger |
SERVER_MANAGEMENT_LOGGER
A logger with the category
org.jboss.server.management |
Modifier and Type | Method and Description |
---|---|
void |
cannotResolveAddress(org.jboss.dmr.ModelNode address)
Logs a warning message indicating the address, represented by the
address parameter, could not be
resolved, so cannot match it to any InetAddress. |
void |
errorBootingContainer(Throwable cause)
Logs an error message indicating there was an error booting the container.
|
void |
errorBootingContainer(Throwable cause,
long bootStackSize,
String name)
Logs an error message indicating there was an error booting the container.
|
void |
errorRevertingOperation(Throwable cause,
String className,
String op,
PathAddress address)
Logs an error message indicating the class, represented by the
className parameter, caught exception
attempting to revert the operation, represented by the op parameter, at the address, represented by the
address parameter. |
void |
failedExecutingOperation(Throwable cause,
org.jboss.dmr.ModelNode op,
PathAddress path)
Logs an error message indicating a failure to execute the operation, represented by the
op parameter, at
the address represented by the path parameter. |
void |
failedSubsystemBootOperations(Throwable cause,
String name)
Logs an error message indicating a failure executing the subsystem, represented by the
name parameter,
boot operations. |
void |
failedToCloseResource(Throwable cause,
Closeable closeable)
Logs an error message indicating to failure to close the resource represented by the
closeable parameter. |
void |
failedToCloseResource(Throwable cause,
XMLStreamWriter writer)
Logs an error message indicating to failure to close the resource represented by the
writer parameter. |
void |
failedToPersistConfigurationChange(Throwable cause)
Logs an error message indicating a failure to persist configuration change.
|
void |
failedToStoreConfiguration(Throwable cause,
String name)
Logs an error message indicating a failure to store the configuration file.
|
void |
invalidSystemPropertyValue(String value,
String name,
int defaultValue)
Logs an error message indicating an invalid value for the system property, represented by the
name
parameter, was found. |
void |
invalidWildcardAddress(org.jboss.dmr.ModelNode address,
String inetAddress,
String anyAddress,
String anyIpv4Address,
String anyIpv6Address)
Logs a warning message indicating the address, represented by the
address parameter, is a wildcard
address and will not match any specific address. |
void |
noFinalProxyOutcomeReceived(org.jboss.dmr.ModelNode op,
org.jboss.dmr.ModelNode opAddress,
org.jboss.dmr.ModelNode proxyAddress)
Logs a warning message indicating an invocation on a
ProxyController did not provide a final response. |
void |
noHandler(String stepOpName,
PathAddress address)
Logs an error message indicating no handler for the step operation, represented by the
stepOpName
parameter, at address . |
void |
operationFailed(org.jboss.dmr.ModelNode op,
org.jboss.dmr.ModelNode opAddress,
org.jboss.dmr.ModelNode failureDescription)
Logs an error message indicating operation failed.
|
void |
operationFailed(Throwable cause,
org.jboss.dmr.ModelNode op,
org.jboss.dmr.ModelNode opAddress)
Logs an error message indicating operation failed.
|
void |
operationFailed(Throwable cause,
org.jboss.dmr.ModelNode op,
org.jboss.dmr.ModelNode opAddress,
String propertyName,
int defaultSize)
Logs an error message indicating operation failed.
|
void |
operationFailedOnClientError(org.jboss.dmr.ModelNode op,
org.jboss.dmr.ModelNode opAddress,
org.jboss.dmr.ModelNode failureDescription)
Logs an error message indicating operation failed due to a client error (e.g.
|
void |
registerSubsystemNoWraper(String name)
Logs an error indicating that createWrapper should be called
|
void |
wildcardAddressDetected()
Logs a warning message indicating a wildcard address was detected and will ignore other interface criteria.
|
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 ControllerLogger ROOT_LOGGER
static final ControllerLogger MGMT_OP_LOGGER
static final ControllerLogger SERVER_LOGGER
org.jboss.as.server
static final ControllerLogger SERVER_MANAGEMENT_LOGGER
org.jboss.server.management
@LogMessage(level=WARN) @Message(id=14600, value="Cannot resolve address %s, so cannot match it to any InetAddress") void cannotResolveAddress(org.jboss.dmr.ModelNode address)
address
parameter, could not be
resolved, so cannot match it to any InetAddress.address
- the address that could not be resoloved.@LogMessage(level=ERROR) @Message(id=14601, value="Error booting the container") void errorBootingContainer(@Cause Throwable cause)
cause
- the cause of the error.@LogMessage(level=ERROR) @Message(id=14602, value="Error booting the container due to insufficient stack space for the thread used to execute boot operations. The thread was configured with a stack size of [%1$d]. Setting system property %2$s to a value higher than [%1$d] may resolve this problem.") void errorBootingContainer(@Cause Throwable cause, long bootStackSize, String name)
cause
- the cause of the error.bootStackSize
- the boot stack size.name
- the property name to increase the boot stack size.@LogMessage(level=ERROR) @Message(id=14603, value="%s caught exception attempting to revert operation %s at address %s") void errorRevertingOperation(@Cause Throwable cause, String className, String op, PathAddress address)
className
parameter, caught exception
attempting to revert the operation, represented by the op
parameter, at the address, represented by the
address
parameter.cause
- the cause of the error.className
- the name of the class that caught the error.op
- the operation.address
- the address.@LogMessage(level=ERROR) @Message(id=14604, value="Failed executing operation %s at address %s") void failedExecutingOperation(@Cause Throwable cause, org.jboss.dmr.ModelNode op, PathAddress path)
op
parameter, at
the address represented by the path
parameter.cause
- the cause of the error.op
- the operation.path
- the path the operation was executed on.@LogMessage(level=ERROR) @Message(id=14605, value="Failed executing subsystem %s boot operations") void failedSubsystemBootOperations(@Cause Throwable cause, String name)
name
parameter,
boot operations.cause
- the cause of the error.name
- the name of subsystem.@LogMessage(level=ERROR) @Message(id=14606, value="Failed to close resource %s") void failedToCloseResource(@Cause Throwable cause, Closeable closeable)
closeable
parameter.cause
- the cause of the error.closeable
- the resource.@LogMessage(level=ERROR) void failedToCloseResource(@Cause Throwable cause, XMLStreamWriter writer)
writer
parameter.cause
- the cause of the error.writer
- the resource.@LogMessage(level=ERROR) @Message(id=14607, value="Failed to persist configuration change") void failedToPersistConfigurationChange(@Cause Throwable cause)
cause
- the cause of the error.@LogMessage(level=ERROR) @Message(id=14608, value="Failed to store configuration to %s") void failedToStoreConfiguration(@Cause Throwable cause, String name)
cause
- the cause of the error.name
- the name of the configuration.@LogMessage(level=ERROR) @Message(id=14609, value="Invalid value %s for system property %s -- using default value [%d]") void invalidSystemPropertyValue(String value, String name, int defaultValue)
name
parameter, was found.value
- the invalid value.name
- the name of the system property.defaultValue
- the default value being used.@LogMessage(level=WARN) @Message(id=14610, value="Address %1$s is a wildcard address, which will not match against any specific address. Do not use the \'%2$s\' configuration element to specify that an interface should use a wildcard address; use \'%3$s\', \'%4$s\', or \'%5$s\'") void invalidWildcardAddress(org.jboss.dmr.ModelNode address, String inetAddress, String anyAddress, String anyIpv4Address, String anyIpv6Address)
address
parameter, is a wildcard
address and will not match any specific address.address
- the wildcard address.inetAddress
- the inet-address tag.anyAddress
- the any-address tag.anyIpv4Address
- the any-ipv4-address tag.anyIpv6Address
- the any-ipv6-address tag.@LogMessage(level=ERROR) @Message(id=14611, value="No handler for %s at address %s") void noHandler(String stepOpName, PathAddress address)
stepOpName
parameter, at address
.stepOpName
- the step operation name.address
- the address.@LogMessage(level=ERROR) @Message(id=14612, value="Operation (%s) failed - address: (%s)") void operationFailed(@Cause Throwable cause, org.jboss.dmr.ModelNode op, org.jboss.dmr.ModelNode opAddress)
cause
- the cause of the error.op
- the operation that failed.opAddress
- the address the operation failed on.@LogMessage(level=ERROR) @Message(id=-1, value="Operation (%s) failed - address: (%s) - failure description: %s") void operationFailed(org.jboss.dmr.ModelNode op, org.jboss.dmr.ModelNode opAddress, org.jboss.dmr.ModelNode failureDescription)
op
- the operation that failed.opAddress
- the address the operation failed on.failureDescription
- the failure description.@LogMessage(level=ERROR) @Message(id=14613, value="Operation (%s) failed - address: (%s) -- due to insufficient stack space for the thread used to execute operations. If this error is occurring during server boot, setting system property %s to a value higher than [%d] may resolve this problem.") void operationFailed(@Cause Throwable cause, org.jboss.dmr.ModelNode op, org.jboss.dmr.ModelNode opAddress, String propertyName, int defaultSize)
cause
- the cause of the error.op
- the operation that failed.opAddress
- the address the operation failed on.propertyName
- the boot stack size property name.defaultSize
- the default boot stack size property size.@LogMessage(level=WARN) @Message(id=14614, value="Wildcard address detected - will ignore other interface criteria.") void wildcardAddressDetected()
@LogMessage(level=ERROR) @Message(id=14615, value="Received no final outcome response for operation %s with address %s from remote process at address %s. The result of this operation will only include the remote process\' preliminary response tothe request.") void noFinalProxyOutcomeReceived(org.jboss.dmr.ModelNode op, org.jboss.dmr.ModelNode opAddress, org.jboss.dmr.ModelNode proxyAddress)
ProxyController
did not provide a final response.@LogMessage(level=DEBUG) @Message(id=14616, value="Operation (%s) failed - address: (%s) - failure description: %s") void operationFailedOnClientError(org.jboss.dmr.ModelNode op, org.jboss.dmr.ModelNode opAddress, org.jboss.dmr.ModelNode failureDescription)
op
- the operation that failed.opAddress
- the address the operation failed on.failureDescription
- the failure description.@LogMessage(level=WARN) @Message(id=14617, value="A subystem \'%s\' was registered without calling ExtensionContext.createTracker(). The subsystems are registered normally but won\'t be cleaned up when the extension is removed.") void registerSubsystemNoWraper(String name)
name
- the subsystem nameCopyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.