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