summaryrefslogtreecommitdiffstats
path: root/service/java/com/android/server/wifi/WifiConfigStore.java
diff options
context:
space:
mode:
authorRoshan Pius <rpius@google.com>2016-12-08 07:52:08 -0800
committerRoshan Pius <rpius@google.com>2016-12-08 07:52:08 -0800
commit082c01c010b86246e425d54269757449aaef353e (patch)
tree0a65968167f4a9f502fea97c4317f9d7f6c98d38 /service/java/com/android/server/wifi/WifiConfigStore.java
parent2ce17fab002eace9722bf2437ca1fbd470af671c (diff)
downloadandroid_frameworks_opt_net_wifi-082c01c010b86246e425d54269757449aaef353e.tar.gz
android_frameworks_opt_net_wifi-082c01c010b86246e425d54269757449aaef353e.tar.bz2
android_frameworks_opt_net_wifi-082c01c010b86246e425d54269757449aaef353e.zip
WifiConfigStore: Log the exception in buffered write
I suspect the store file write failures reported via wtf are due to the user's CE store not being visible (device is still booting up). This should be pretty harmless because we would eventually write out the data when the user unlocks. So, add the exception reason to the wtf to confirm the root cause before putting in a fix. Bug: 33446122 Test: Compiles Change-Id: Iff6bef5acc4e55067169c3e2b74500df28c4e694
Diffstat (limited to 'service/java/com/android/server/wifi/WifiConfigStore.java')
-rw-r--r--service/java/com/android/server/wifi/WifiConfigStore.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/java/com/android/server/wifi/WifiConfigStore.java b/service/java/com/android/server/wifi/WifiConfigStore.java
index 9a48f894b..af469f10c 100644
--- a/service/java/com/android/server/wifi/WifiConfigStore.java
+++ b/service/java/com/android/server/wifi/WifiConfigStore.java
@@ -98,7 +98,7 @@ public class WifiConfigStore {
try {
writeBufferedData();
} catch (IOException e) {
- Log.wtf(TAG, "Buffered write failed");
+ Log.wtf(TAG, "Buffered write failed", e);
}
}