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

Commit 9325829d authored by Gavin Corkery's avatar Gavin Corkery
Browse files

Remove some unnecessary logs

Further reduce logspam by removing some logs which don't
give too much debugging information.

Test: m
Bug: 162623584
Change-Id: Ib8fd358486147097f76866c5a5908324662b9a79
parent a0077ffa
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -779,7 +779,6 @@ public class PackageWatchdog {

    @GuardedBy("mLock")
    private Set<String> getPackagesPendingHealthChecksLocked() {
        Slog.d(TAG, "Getting all observed packages pending health checks");
        Set<String> packages = new ArraySet<>();
        Iterator<ObserverInternal> oit = mAllObservers.values().iterator();
        while (oit.hasNext()) {
@@ -828,7 +827,6 @@ public class PackageWatchdog {
            Slog.i(TAG, "Cancelling state sync, nothing to sync");
            mUptimeAtLastStateSync = 0;
        } else {
            Slog.i(TAG, "Scheduling next state sync in " + durationMs + "ms");
            mUptimeAtLastStateSync = mSystemClock.uptimeMillis();
            mShortTaskHandler.postDelayed(mSyncStateWithScheduledReason, durationMs);
        }
@@ -869,7 +867,6 @@ public class PackageWatchdog {
            return;
        }

        Slog.i(TAG, "Removing " + elapsedMs + "ms from all packages on all observers");
        Iterator<ObserverInternal> it = mAllObservers.values().iterator();
        while (it.hasNext()) {
            ObserverInternal observer = it.next();