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