Sfoglia il codice sorgente

WgQuickBackend: Log when tunnels can't be enumerated

Signed-off-by: Samuel Holland <samuel@sholland.org>
master
Samuel Holland 6 anni fa
parent
commit
a1d955ef62
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java

+ 2
- 1
app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java Vedi File

@@ -54,7 +54,8 @@ public final class WgQuickBackend implements Backend {
toolsInstaller.ensureToolsAvailable();
if (rootShell.run(output, "wg show interfaces") != 0 || output.isEmpty())
return Collections.emptySet();
} catch (final Exception ignored) {
} catch (final Exception e) {
Log.w(TAG, "Unable to enumerate running tunnels", e);
return Collections.emptySet();
}
// wg puts all interface names on the same line. Split them into separate elements.


Caricamento…
Annulla
Salva