Fixes FS#197: Decrease verbosity of logging of 'skipping duplicate message'
This commit is contained in:
parent
8c3245dd1f
commit
aeda55ba7c
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ public class MessageParser extends AbstractParser implements
|
|||
|| (isTypeGroupChat && packet.hasChild("delay","urn:xmpp:delay"))
|
||||
|| message.getType() == Message.TYPE_PRIVATE;
|
||||
if (checkForDuplicates && conversation.hasDuplicateMessage(message)) {
|
||||
Log.d(Config.LOGTAG,"skipping duplicate message from "+message.getCounterpart().toString()+" "+message.getBody());
|
||||
Logging.d(Config.LOGTAG, "skipping duplicate message from '" + message.getCounterpart().toString() + "' with remote id " + message.getRemoteMsgId());
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue