NOOP logging

This commit is contained in:
M66B 2024-04-29 07:24:07 +02:00
parent 1840bc0fdd
commit ab36faa82b
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}
});