commit | 1955d1029df1c99c22548425355d1aff46b6c661 | [log] [tgz] |
---|---|---|
author | Christian Wailes <chriswailes@google.com> | Mon Aug 02 23:54:32 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Aug 02 23:54:32 2021 +0000 |
tree | 81824e8db7f4abd989a7162d44d7445c1552d1d1 | |
parent | c035e5843d40869fbbe61ff29e579e326e02713c [diff] | |
parent | 9cf99654c703a5f115851e548636a29ab1021a71 [diff] |
Merge "Fix enum comparison to reenable -Wenum-compare" am: 9cf99654c7 Original change: https://android-review.googlesource.com/c/platform/packages/modules/DnsResolver/+/1774985 Change-Id: I4dcd066d9ae916138ae94c9bd69b2db9143f0880
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.