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

Commit 53e738ad authored by Ruchir Rastogi's avatar Ruchir Rastogi Committed by Automerger Merge Worker
Browse files

Merge "Lower error if diskstats cache file not found" into rvc-dev am:...

Merge "Lower error if diskstats cache file not found" into rvc-dev am: 494b541a am: 2d9361b0 am: cb25e886 am: e97392bc

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/11750085

Change-Id: I93379cf4d6c86402a7cf637551460fbd4ca632c1
parents c5a584ed e97392bc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2184,7 +2184,7 @@ public class StatsPullAtomService extends SystemService {
                pulledData.add(e);
            }
        } catch (IOException | JSONException e) {
            Slog.e(TAG, "exception reading diskstats cache file", e);
            Slog.w(TAG, "Unable to read diskstats cache file within pullAppSize");
            return StatsManager.PULL_SKIP;
        }
        return StatsManager.PULL_SUCCESS;
@@ -2288,7 +2288,7 @@ public class StatsPullAtomService extends SystemService {
                    .build();
            pulledData.add(e);
        } catch (IOException | JSONException e) {
            Slog.e(TAG, "exception reading diskstats cache file", e);
            Slog.w(TAG, "Unable to read diskstats cache file within pullCategorySize");
            return StatsManager.PULL_SKIP;
        }
        return StatsManager.PULL_SUCCESS;