mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Improved debug info
This commit is contained in:
parent
364cf1b459
commit
cf4694cc31
1 changed files with 1 additions and 1 deletions
|
@ -1065,7 +1065,7 @@ public class DebugHelper {
|
|||
Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();
|
||||
while (interfaces != null && interfaces.hasMoreElements()) {
|
||||
NetworkInterface ni = interfaces.nextElement();
|
||||
size += write(os, "Interface=" + ni + "\r\n");
|
||||
size += write(os, "Interface=" + ni + " up=" + ni.isUp() + "\r\n");
|
||||
for (InterfaceAddress iaddr : ni.getInterfaceAddresses()) {
|
||||
InetAddress addr = iaddr.getAddress();
|
||||
size += write(os, " addr=" + addr +
|
||||
|
|
Loading…
Reference in a new issue