commit | 87a2e69d32e602caecf30877fa9020b315d9ea0b | [log] [tgz] |
---|---|---|
author | Jooyung Han <jooyung@google.com> | Thu Feb 25 13:24:36 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Feb 25 13:24:36 2021 +0000 |
tree | 772ed2bd81740cc7e1c69d3b57bcffc5d78beb9e | |
parent | 84321135f759d7a4b9f87fd7bab234d98d39c6a7 [diff] | |
parent | 60a07adb919dfad2670eb00737ced23fc5e7c158 [diff] |
Fix binder log tests am: cbb09d0d70 am: aa9a274cd5 am: 60a07adb91 Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1607434 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I23540e47889621a8d7b08acf42597bf0b0913226
This code uses LOG(X) for logging. Log levels are VERBOSE,DEBUG,INFO,WARNING and ERROR. The default setting is WARNING and logs relate to WARNING and ERROR will be shown. If you want to enable the DEBUG level logs, using following command. adb shell service call dnsresolver 10 i32 1 VERBOSE 0 DEBUG 1 INFO 2 WARNING 3 ERROR 4 Verbose resolver logs could contain PII -- do NOT enable in production builds.