commit | 1b00e74cf3bf1ddf984e1d1f4f0a43e113656974 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Tue Aug 03 14:17:54 2021 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Tue Aug 03 14:17:54 2021 -0700 |
tree | 4903e7ae9c198e7e0d3f45ab9847a9970eaf7fdf | |
parent | 3c3202e8a15fa9abf220784c8d4d3740f66b9d32 [diff] |
Fix warnings in preparation for Rust 1.54.0 This CL fixes a new warnings generated by rustc 1.54.0. Bug: 194812675 Test: m rust Change-Id: I701c9035c77b6912896a23a0000f3949dc8bfc34
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.