commit | e098bdcff2594fa871d182b507af25f3c00943ae | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Fri Feb 18 02:35:17 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Feb 18 02:35:17 2022 +0000 |
tree | cf72fcae19ff6b908d3db9f404fc8803355a71ac | |
parent | 25b4676cc0f4f658d459fc596c5bd462ab1ed235 [diff] | |
parent | f4fa285df0f02115b83e82247aaab39c7462f4e3 [diff] |
Remove redundant "using" statements am: f4fa285df0 Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1990007 Change-Id: I3df8cc941e32093b952df8793b7ce20797646433
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.