commit | b158f07cbc8731f59bdb0016795d58f9fd773335 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Mon Mar 07 23:57:58 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Mar 07 23:57:58 2022 +0000 |
tree | 21031edce3eb8fe4542440f33a94e23fdb4ac058 | |
parent | 9d9032df870e43e1ce64a779bc904bbf896a8205 [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: Icf2a238e5c7c121300f6ad344fd7bf80ddb61a8a
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.