commit | fe608e455c87e4b19c9c03397cbc4dada5d9e828 | [log] [tgz] |
---|---|---|
author | chenbruce <chenbruce@google.com> | Mon Sep 09 19:59:14 2019 -0700 |
committer | android-build-merger <android-build-merger@google.com> | Mon Sep 09 19:59:14 2019 -0700 |
tree | 73408c68235ddf7f697a2de328454e27d55740a5 | |
parent | fedf0d68dd60e58528cb1f5a997e41df8ed82363 [diff] | |
parent | 33f462aae0d27009cd315fbb9f299c00527cf977 [diff] |
Merge "Resolv: Enable clang-tidy and fix all warnings" am: f1e707cf47 am: 6b801dfeff am: 33f462aae0 Change-Id: Ib3ed52fa74366237180947d2b10a5e4c20bec795
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.