1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Added logging

This commit is contained in:
M66B 2021-03-17 12:16:00 +01:00
parent 8852867f6e
commit 59ddf7971a

View file

@ -2045,6 +2045,11 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
updateNetworkState(network, "properties");
}
@Override
public void onBlockedStatusChanged(@NonNull Network network, boolean blocked) {
EntityLog.log(ServiceSynchronize.this, "Network " + network + " blocked=" + blocked);
}
@Override
public void onLost(@NonNull Network network) {
updateNetworkState(network, "lost");