Sure. I will do next Monday.
Thanks.
------------ Original Message ------------
From : 'Shreedhar Ganapathy'<Shreedhar.Ganapathy@Sun.COM>
To : dev@shoal.dev.java.net
Sent : Fri, 08 May 2009 07:28:23 -0700
Subject : Re: [Shoal-Dev] Trivial bug(about a log message)
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 parameter is missing.It should be modified like this.-----...logger.log(Level.INFO, "gms.failureSuspectedEventReceived", new Object[]{token,groupName} );...-----Thanks.--
Bongjae Chang