diff --git a/app/src/main/java/eu/faircode/email/EmailService.java b/app/src/main/java/eu/faircode/email/EmailService.java index edb70f8d5b..ed53c86a83 100644 --- a/app/src/main/java/eu/faircode/email/EmailService.java +++ b/app/src/main/java/eu/faircode/email/EmailService.java @@ -364,8 +364,10 @@ public class EmailService implements AutoCloseable { try { ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); Network active = cm.getActiveNetwork(); - if (active != null) + if (active != null) { + EntityLog.log(context, "Binding to active network " + active); properties.put("fairemail.factory", active.getSocketFactory()); + } } catch (Throwable ex) { Log.e(ex); }