ejb@glassfish.java.net

question about GMS-related messages in EJB container

From: Dies Koper <diesk_at_fast.au.fujitsu.com>
Date: Wed, 22 Apr 2009 10:00:48 +1000

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