commit | 3b6db502f1ed9b6bd64a47ec7bb72a50d5007168 | [log] [tgz] |
---|---|---|
author | Yang Sun <sunytt@google.com> | Mon Mar 18 02:11:47 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Mar 18 02:11:47 2024 +0000 |
tree | c6dbc2d485fb7d684b26fbd78f06f4ffa3c4baa5 | |
parent | f8ffba4c042d90ac2ecc0ced76cf5d42397c0c57 [diff] | |
parent | 72ea70ed1d19329f23434193a9326d7b7221db27 [diff] |
Merge "Log as warning when persistent setting file doesn't exist" into main
diff --git a/thread/service/java/com/android/server/thread/ThreadPersistentSettings.java b/thread/service/java/com/android/server/thread/ThreadPersistentSettings.java index 0277528..5cb53fe 100644 --- a/thread/service/java/com/android/server/thread/ThreadPersistentSettings.java +++ b/thread/service/java/com/android/server/thread/ThreadPersistentSettings.java
@@ -213,7 +213,7 @@ mSettings.putAll(bundleRead); } } catch (FileNotFoundException e) { - Log.e(TAG, "No store file to read", e); + Log.w(TAG, "No store file to read", e); } catch (IOException e) { Log.e(TAG, "Read from store file failed", e); }