NOOP logging

pull/215/head
M66B 5 months ago
parent 1840bc0fdd
commit ab36faa82b

@ -204,8 +204,10 @@ class Core {
@Override
public Object doCommand(IMAPProtocol protocol) throws ProtocolException {
long ago = System.currentTimeMillis() - protocol.getTimestamp();
if (ago > 20000)
if (ago > 20000) {
Log.i("NOOP ago=" + ago + " ms");
protocol.noop();
}
return null;
}
});

Loading…
Cancel
Save