commit | 43806e26366a7d9e95b8da5ac7e73863e2468999 | [log] [tgz] |
---|---|---|
author | Martin Wu <martinwu@google.com> | Fri Dec 17 09:31:25 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Dec 17 09:31:25 2021 +0000 |
tree | ac6a4bc2610efc9b7e2a4a331fb84b5575748339 | |
parent | 784c04b7e59df05c4b1df9be1a3f50665eb164fe [diff] | |
parent | b7d0e28f56466a04a368ecb39be56f86877d4b3b [diff] |
Merge "Fix DnsResolver log print" am: 03a274f82b am: b7d0e28f56 Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1924037 Change-Id: I786dae8fecfb05c66cbc7d59208714de85e261aa
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.