commit | f56f9a64870824b7fb06e384d92b34d4218577b0 | [log] [tgz] |
---|---|---|
author | Liz Kammer <eakammer@google.com> | Wed Jul 21 09:30:39 2021 -0400 |
committer | Liz Kammer <eakammer@google.com> | Thu Jul 22 10:16:46 2021 -0400 |
tree | 36750ca6691f9d59d4e3fab725dc3ec3a83457ae | |
parent | 53d3eb2a49e34ecb6015f92f4055517d52a77c2b [diff] |
Fix enum comparison to reenable -Wenum-compare Test: m && TH Change-Id: I83b9d961dc6f1b5f13655e50121473ded8fa0241
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.