commit | ab93e3d9335c9fc572c589a62dd395d28442c1be | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Fri Feb 18 02:34:17 2022 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Feb 18 02:34:17 2022 +0000 |
tree | cf72fcae19ff6b908d3db9f404fc8803355a71ac | |
parent | 7523715b0d2421b5b6edc2a538b3016cd659847f [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: I6d7491a134d3316fcc5bc6898338d34c6971369b
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.