removed some unecessary logging from omemo message generation

This commit is contained in:
Daniel Gultsch 2016-11-18 20:13:09 +01:00
parent 01f92ef4ee
commit a86a36f570
1 changed files with 0 additions and 4 deletions

View File

@ -957,14 +957,10 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
if (remoteSessions.isEmpty()) {
return null;
}
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Building axolotl foreign keyElements...");
for (XmppAxolotlSession session : remoteSessions) {
Log.v(Config.LOGTAG, AxolotlService.getLogprefix(account) + session.getRemoteAddress().toString());
axolotlMessage.addDevice(session);
}
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Building axolotl own keyElements...");
for (XmppAxolotlSession session : ownSessions) {
Log.v(Config.LOGTAG, AxolotlService.getLogprefix(account) + session.getRemoteAddress().toString());
axolotlMessage.addDevice(session);
}