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

Commit 8b260751 authored by Chiachang Wang's avatar Chiachang Wang Committed by Automerger Merge Worker
Browse files

Merge "Dump only NORMAL priority information if no priority assigned" am:...

Merge "Dump only NORMAL priority information if no priority assigned" am: f93d99de am: 8b230f75 am: cd6c883c

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

Change-Id: Ie16efa923aeae623e36bb900cded04a87699d15e
parents 0bab57f6 cd6c883c
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -1045,14 +1045,10 @@ public class ConnectivityService extends IConnectivityManager.Stub
            } else {
                // ConnectivityService publishes binder service using publishBinderService() with
                // no priority assigned will be treated as NORMAL priority. Dumpsys does not send
                // "--dump-priority" arguments to the service. Thus, dump both NORMAL and HIGH to
                // align the legacy design.
                // "--dump-priority" arguments to the service. Thus, dump NORMAL only to align the
                // legacy output for dumpsys connectivity.
                // TODO: Integrate into signal dump.
                dumpNormal(fd, pw, args);
                pw.println();
                pw.println("DUMP OF SERVICE HIGH connectivity");
                pw.println();
                dumpHigh(fd, pw);
            }
        }
    }