Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6d3d148 authored by Jan Nordqvist's avatar Jan Nordqvist
Browse files

Added logging in a few error paths for wifi config installation.

Bug: 22790527
Change-Id: I71b298b98da098f647f52886c3c3a7456cb24d51
parent c35e670d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -669,6 +669,7 @@ public class WifiManager {
        try {
            return mService.getConfiguredNetworks();
        } catch (RemoteException e) {
            Log.w(TAG, "Caught RemoteException trying to get configured networks: " + e);
            return null;
        }
    }
@@ -1589,6 +1590,7 @@ public class WifiManager {
        try {
            return mService.buildWifiConfig(uriString, mimeType, data);
        } catch (RemoteException e) {
            Log.w(TAG, "Caught RemoteException trying to build wifi config: " + e);
            return null;
        }
    }