commit | 9cf99654c703a5f115851e548636a29ab1021a71 | [log] [tgz] |
---|---|---|
author | Christian Wailes <chriswailes@google.com> | Mon Aug 02 23:39:25 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Mon Aug 02 23:39:25 2021 +0000 |
tree | 81824e8db7f4abd989a7162d44d7445c1552d1d1 | |
parent | f54cf26090579f0ccf841bf27178a8a591e07bfc [diff] | |
parent | f56f9a64870824b7fb06e384d92b34d4218577b0 [diff] |
Merge "Fix enum comparison to reenable -Wenum-compare"
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.