commit | 3512f4219f1017e2e638cb33c3ee64f9d0380538 | [log] [tgz] |
---|---|---|
author | Ken Chen <cken@google.com> | Thu Jun 24 03:05:38 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Thu Jun 24 03:05:38 2021 +0000 |
tree | 2f35665fa68bcefa5740d2085ec8988c3af4ba52 | |
parent | a4fc430405ae834719015878345e0ef30cc26c9b [diff] | |
parent | 9a554830444e93817a4334c8806e14dffca448b2 [diff] |
Disable deprecated declarations warning-to-error for test. am: 9a55483044 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/15075191 Change-Id: I5076a014c78e467892fe1ffdc6af8ffa9bf0d164
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.