commit | b73196bda4da6e6debc9b9e089eff651156d0088 | [log] [tgz] |
---|---|---|
author | George Burgess IV <gbiv@google.com> | Fri Mar 06 15:01:27 2020 -0800 |
committer | George Burgess IV <gbiv@google.com> | Fri Mar 06 15:01:27 2020 -0800 |
tree | f9d5db1a2d1333895c3366a619ef2c017c626808 | |
parent | d5721395865347efe5d3f1b65638ead7e356ca47 [diff] |
fix -Wunreachable-code-loop-increment This is part of a cleanup to fix instances of the -Wunreachable-code-loop-increment warning, which we plan to enable under -Werror by default. This isn't intended to be a functional change. Bug: 150166387 Test: TreeHugger Change-Id: I1d1cd62471dd57eace18c804c315bb2285b127b1
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.