commit | 12e48b0472b676fa6127afd483b8bfde3665a9ba | [log] [tgz] |
---|---|---|
author | Mike Yu <yumike@google.com> | Thu Sep 24 05:21:39 2020 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Sep 24 05:21:39 2020 +0000 |
tree | 0c8fec5adce4ca52f555540957df4244613dec03 | |
parent | 62978a845c380eb1725bb58cafb487df18d546d3 [diff] | |
parent | eb8f22c800dfe4c377b03f8f4ed9283ffd674c65 [diff] |
Merge "Fix typo in DnsServerSelection test"
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.