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