Hi,
I have a question about the following GMS related messages logged by the
EJB container:
Got Planned Shutdown Notification[1]. + "shutdownNodeID: " +
signal.getMemberToken()
and
Got Planned Shutdown Notification. + "shutdownNodeID: " +
signal.getMemberToken()
Are these debug messages that were accidentally logged as INFO messages?
What does the '[1]' mean in the first message?
The messages are logged in
com.sun.ejb.ee.timer.lifecycle.EJBTimerPlannedShutdownActionImpl#consumeSignal:
[...]
_logger.log(Level.INFO, "Got Planned Shutdown Notification[1]. "
+ "shutdownNodeID: " + signal.getMemberToken());
PlannedShutdownSignal psSignal = (PlannedShutdownSignal) signal;
GMSConstants.shutdownType shutdownType = psSignal.getEventSubType();
if (shutdownType == GMSConstants.shutdownType.INSTANCE_SHUTDOWN) {
_logger.log(Level.INFO, "Got Planned Shutdown Notification. "
+ "shutdownNodeID: " + signal.getMemberToken());
[...]
Thanks,
Dies