removed some unecessary logging from omemo message generation
This commit is contained in:
parent
01f92ef4ee
commit
a86a36f570
|
@ -957,14 +957,10 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded {
|
||||||
if (remoteSessions.isEmpty()) {
|
if (remoteSessions.isEmpty()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Building axolotl foreign keyElements...");
|
|
||||||
for (XmppAxolotlSession session : remoteSessions) {
|
for (XmppAxolotlSession session : remoteSessions) {
|
||||||
Log.v(Config.LOGTAG, AxolotlService.getLogprefix(account) + session.getRemoteAddress().toString());
|
|
||||||
axolotlMessage.addDevice(session);
|
axolotlMessage.addDevice(session);
|
||||||
}
|
}
|
||||||
Log.d(Config.LOGTAG, AxolotlService.getLogprefix(account) + "Building axolotl own keyElements...");
|
|
||||||
for (XmppAxolotlSession session : ownSessions) {
|
for (XmppAxolotlSession session : ownSessions) {
|
||||||
Log.v(Config.LOGTAG, AxolotlService.getLogprefix(account) + session.getRemoteAddress().toString());
|
|
||||||
axolotlMessage.addDevice(session);
|
axolotlMessage.addDevice(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue