commit | 19696795ff535a1afcccf71efcda6dbff3036094 | [log] [tgz] |
---|---|---|
author | Maciej Żenczykowski <maze@google.com> | Sat Apr 25 22:35:07 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Apr 25 22:35:07 2020 +0000 |
tree | c1e390b15db4eee4d9f5cd21ff9896aa729ad0df | |
parent | ca324896e1f8861a38cafcfa7c90c47168102b46 [diff] | |
parent | 4670726f55c17e7f6937be3f5a73cf49250cf4bd [diff] |
resolve_callback_unit_test - fix bugprone-macro-parentheses warning am: 16ad959444 am: 4670726f55 Change-Id: I2befacc87634083d29946088d381dcc3727bfb0e
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.