commit | 48cbd1b033bd937f16ef032a86f12b61c7ad2bf7 | [log] [tgz] |
---|---|---|
author | Ken Chen <cken@google.com> | Wed Jun 23 07:33:53 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Jun 23 07:33:53 2021 +0000 |
tree | 21faa89a646d2db235e1bea186e9b1294b2b66ab | |
parent | bc7d6c0a2030ec19db7f7a8b98e8ee0c65c7ecb5 [diff] | |
parent | 0c422fff84bc88d1a86f83b7602d2a85a109312f [diff] |
Merge "Disable deprecated declarations warning-to-error for 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.