commit | cf52acd5c090a8ac9db132a37554da8880268d91 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Apr 24 04:33:15 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 24 04:33:15 2020 +0000 |
tree | 4ffa06d69ae87d6b9d9cea7d53c8973fef6e24d4 | |
parent | aa16ccb6944c35b9d8936586aed48499eb87be37 [diff] | |
parent | 911cc9aea83ae069f4f76c73e1a1dd618fa28217 [diff] |
DnsResolver/res_comp.cpp - fix bugprone-branch-clone warning am: 911cc9aea8 Change-Id: I91f09e9779ac412f36b8c8965caba42f22e97b4c
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.