commit | 4156cea10c81bfd104f1c727da2df172a9e3c789 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Tue Apr 19 17:23:01 2022 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Tue Apr 19 17:23:01 2022 -0700 |
tree | 21e65b86ef6316db0df612f00a94ea114bc902d0 | |
parent | a65cd277138cc48b27785b15736b5dd5505bb4cc [diff] |
Fix lints from Rust 1.60 Bug: 222737227 Test: m rust Change-Id: I9a7a2f27accdb21028ef9f904626beeca151106f
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.