commit | d8fe7a4e44aee0cb163cbe7e2669d3fcb0771b6d | [log] [tgz] |
---|---|---|
author | Maciej Żenczykowski <maze@google.com> | Sat Apr 25 20:32:26 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Sat Apr 25 20:32:26 2020 +0000 |
tree | f4f32e3fbe65146723ba1a85bce44381a3ff0eaf | |
parent | b7012f62d5d1915cb8d476698560336bed51f73e [diff] | |
parent | b77afa0ad247814dd639dc93e17202e60553c069 [diff] |
resolve_callback_unit_test - fix bugprone-macro-parentheses warning am: b77afa0ad2 Change-Id: Id72144e015a6e23fbd06d99f135dc49b482a3c50
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.