@MessageLogger(projectCode="JBAS")
public interface DomainControllerLogger
extends org.jboss.logging.BasicLogger
Modifier and Type | Field and Description |
---|---|
static DomainControllerLogger |
CONTROLLER_LOGGER
A logger with the category of
org.jboss.as.controller . |
static DomainControllerLogger |
DEPLOYMENT_LOGGER
A logger with the category of
org.jboss.as.deployment . |
static DomainControllerLogger |
DOMAIN_DEPLOYMENT_LOGGER
A logger with the category of
org.jboss.as.domain.deployment . |
static DomainControllerLogger |
HOST_CONTROLLER_LOGGER
A logger with the category of
org.jboss.as.host.controller . |
static DomainControllerLogger |
ROOT_LOGGER
A logger with the category of the package.
|
Modifier and Type | Method and Description |
---|---|
void |
caughtExceptionAwaitingFinalResponse(Throwable cause,
String hostName)
Logs a warning message indicating an exception was caught awaiting the final response from the host, represented
by the
hostName parameter. |
void |
caughtExceptionAwaitingFinalResponse(Throwable cause,
String serverName,
String hostName)
Logs a warning message indicating an exception was caught awaiting the final response from the server,
represented by the
serverName parameter, on the host, represented by the hostName parameter. |
void |
caughtExceptionClosingInputStream(Throwable cause)
Logs a warning message indicating an exception was caught closing the input stream.
|
void |
caughtExceptionWaitingForTask(String className,
String exceptionName,
String task)
Logs an error message indicating the class, represented by the
className parameter, caught an exception
waiting for the task. |
void |
caughtExceptionWaitingForTaskReturning(String className,
String exceptionName,
String task)
Logs an error message indicating the class, represented by the
className parameter, caught an exception
waiting for the task and is returning. |
void |
domainModelChangedOnReConnect(Set<ServerIdentity> servers)
Logs a warning message indicating the domain model has changed on re-connect and the servers need to be restarted
for the changes to take affect.
|
void |
failedToSetServerInRestartRequireState(String serverName) |
void |
interruptedAwaitingFinalResponse(String hostName)
Logs a warning message indicating an interruption awaiting the final response from the host, represented by the
hostName parameter. |
void |
interruptedAwaitingFinalResponse(String serverName,
String hostName)
Logs a warning message indicating an interruption awaiting the final response from the server, represented by the
serverName parameter, on the host, represented by the hostName parameter. |
void |
reportAdminOnlyMissingDeploymentContent(String contentHash,
String deploymentName)
Logs an error message indicating the content for a configured deployment was unavailable at boot but boot
was allowed to proceed because the HC is in admin-only mode.
|
void |
warnIgnoringProfileInclude(Location location) |
void |
warnIgnoringSocketBindingGroupInclude(Location location) |
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 DomainControllerLogger ROOT_LOGGER
static final DomainControllerLogger CONTROLLER_LOGGER
org.jboss.as.controller
.static final DomainControllerLogger DEPLOYMENT_LOGGER
org.jboss.as.deployment
.static final DomainControllerLogger DOMAIN_DEPLOYMENT_LOGGER
org.jboss.as.domain.deployment
.static final DomainControllerLogger HOST_CONTROLLER_LOGGER
org.jboss.as.host.controller
.@LogMessage(level=WARN) @Message(id=10800, value="Ignoring \'include\' child of \'socket-binding-group\' %s") void warnIgnoringSocketBindingGroupInclude(Location location)
@LogMessage(level=WARN) @Message(id=10801, value="Ignoring \'include\' child of \'profile\' %s") void warnIgnoringProfileInclude(Location location)
@LogMessage(level=WARN) @Message(id=10802, value="Interrupted awaiting final response from server %s on host %s") void interruptedAwaitingFinalResponse(String serverName, String hostName)
serverName
parameter, on the host, represented by the hostName
parameter.serverName
- the name of the server.hostName
- the name of the host.@LogMessage(level=WARN) @Message(id=10803, value="Caught exception awaiting final response from server %s on host %s") void caughtExceptionAwaitingFinalResponse(@Cause Throwable cause, String serverName, String hostName)
serverName
parameter, on the host, represented by the hostName
parameter.cause
- the cause of the error.serverName
- the name of the server.hostName
- the name of the host.@LogMessage(level=WARN) @Message(id=10804, value="Interrupted awaiting final response from host %s") void interruptedAwaitingFinalResponse(String hostName)
hostName
parameter.hostName
- the name of the host.@LogMessage(level=WARN) @Message(id=10805, value="Caught exception awaiting final response from host %s") void caughtExceptionAwaitingFinalResponse(@Cause Throwable cause, String hostName)
hostName
parameter.cause
- the cause of the error.hostName
- the name of the host.@LogMessage(level=WARN) @Message(id=10806, value="Caught exception closing input stream") void caughtExceptionClosingInputStream(@Cause Throwable cause)
cause
- the cause of the error.@LogMessage(level=INFO) @Message(id=10807, value="Domain model has changed on re-connect. The following servers will need to be restarted for changes to take affect: %s") void domainModelChangedOnReConnect(Set<ServerIdentity> servers)
servers
- the servers that need to restart.@LogMessage(level=ERROR) @Message(id=10808, value="%s caught %s waiting for task %s") void caughtExceptionWaitingForTask(String className, String exceptionName, String task)
className
parameter, caught an exception
waiting for the task.className
- the class name.exceptionName
- the name of the exception caught.task
- the task.@LogMessage(level=ERROR) @Message(id=10809, value="%s caught %s waiting for task %s; returning") void caughtExceptionWaitingForTaskReturning(String className, String exceptionName, String task)
className
parameter, caught an exception
waiting for the task and is returning.className
- the class name.exceptionName
- the name of the exception caught.task
- the task.@LogMessage(level=ERROR) @Message(id=10810, value="No deployment content with hash %s is available in the deployment content repository for deployment %s. Because this Host Controller is booting in ADMIN-ONLY mode, boot will be allowed to proceed to provide administrators an opportunity to correct this problem. If this Host Controller were not in ADMIN-ONLY mode this would be a fatal boot failure.") void reportAdminOnlyMissingDeploymentContent(String contentHash, String deploymentName)
contentHash
- the content hash that could not be found.deploymentName
- the deployment name.@LogMessage(level=WARN) @Message(id=10811, value="failed to set server (%s) into a restart required state") void failedToSetServerInRestartRequireState(String serverName)
Copyright © 2014 JBoss by Red Hat. All rights reserved.