dev@shoal.java.net

Re: [Shoal-Dev] Trivial bug(about a log message)

From: Shreedhar Ganapathy <Shreedhar.Ganapathy_at_Sun.COM>
Date: Fri, 08 May 2009 07:28:23 -0700

Hi Bongjae
Thanks for the find. Could you file a bug and checkin this fix?

Thanks a lot
Shreedhar

Bongjae Chang wrote:
> Hi,
> I found a trivial bug about a log message.
> In ViewWindow.java's addInDoubtMemberSignals()
> -----
> ...
> logger.log(Level.INFO, "gms.failureSuspectedEventReceived", *token* );
> ...
> -----
> In LogStrings.properties
> -----
> ...
> gms.failureSuspectedEventReceived=Received FailureSuspectedEvent for
> Member: {0} of Group: *{1}*
> ...
> -----
> The groupName parameteris missing.
> It should be modified like this.
> -----
> ...
> logger.log(Level.INFO, "gms.failureSuspectedEventReceived", *new
> Object[]{token,groupName}* );
> ...
> -----
> Thanks.
> --
> Bongjae Chang