1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-31 20:25:38 +00:00

Experiment: debug wait after EOF

This commit is contained in:
M66B 2021-10-21 15:03:18 +02:00
parent 4c34d918a3
commit a6f9f34480
2 changed files with 15 additions and 2 deletions

View file

@ -20,6 +20,8 @@ import java.io.*;
import com.sun.mail.iap.ByteArray;
import com.sun.mail.util.ASCIIUtility;
import eu.faircode.email.TrafficStatsHelper;
/**
*
* Inputstream that is used to read a Response.
@ -90,8 +92,10 @@ public class ResponseInputStream {
} catch (InterruptedException ex) {
eu.faircode.email.Log.w(ex);
}
} else
} else if (wait > 1) {
TrafficStatsHelper.debug("Data after=" + wait);
wait = 1;
}
if (b == '\n') {
if ((idx > 0) && buffer[idx-1] == '\r')
gotCRLF = true;
@ -158,8 +162,10 @@ public class ResponseInputStream {
} catch (InterruptedException ex) {
eu.faircode.email.Log.w(ex);
}
} else
} else if (wait > 1) {
TrafficStatsHelper.debug("Data after=" + wait);
wait = 1;
}
count -= actual;
idx += actual;
}

View file

@ -43,4 +43,11 @@ public class TrafficStatsHelper {
else
EntityLog.log(ctx, EntityLog.Type.Statistics, msg);
}
public static void debug(String msg) {
if (ctx == null)
Log.e(msg);
else
EntityLog.log(ctx, EntityLog.Type.General, msg);
}
}