commit | f4fa285df0f02115b83e82247aaab39c7462f4e3 | [log] [tgz] |
---|---|---|
author | Yi Kong <yikong@google.com> | Fri Feb 18 01:31:16 2022 +0800 |
committer | Yi Kong <yikong@google.com> | Fri Feb 18 01:32:19 2022 +0800 |
tree | cf72fcae19ff6b908d3db9f404fc8803355a71ac | |
parent | 15aa9eddd326b8a548bd0ec7372a4e66b0a67f53 [diff] |
Remove redundant "using" statements They are already under the same namespace. Test: presubmit Bug: 219872355 Change-Id: Ibbd5dc4bed7779eee99f553f8dc3e7a8f0bec4bd
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.