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

Commit 4a2bb7d2 authored by Grant Menke's avatar Grant Menke
Browse files

Remove DefaultDialerCache spam logging.

The "refresh default dialer for user" log in DefaultDialerCache#refreshCachesForUsersWithPackage was causing logcat spam of 200+ identical logs during one test invocation. This CL reduces the priority of that log to prevent this unneccesary + repetitive logcat spam from occurring.

Bug: 276794351
Test: N/A since this CL just removes logging.
Change-Id: I0f0d1bb1be8f3fcff0bafc957f2e59beca1a0f8c
parent 21131a0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ public class DefaultDialerCache {
            if (packageName == null ||
                    Objects.equals(packageName, mCurrentDefaultDialerPerUser.get(userId))) {
                String newDefaultDialer = refreshCacheForUser(userId);
                Log.i(LOG_TAG, "Refreshing default dialer for user %d: now %s",
                Log.v(LOG_TAG, "Refreshing default dialer for user %d: now %s",
                        userId, newDefaultDialer);
            }
        }