commit | 40cd585e51548855810245b2ff5d507950c7da55 | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Tue Jul 27 16:02:19 2021 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Tue Jul 27 16:03:02 2021 -0700 |
tree | ff8285eb4875a8e1ac8723d18d04f830d912d9ab | |
parent | 88d5702da2fd9d57f496babe594e967e7417b41d [diff] |
Fix warnings in preparation for Rust 1.54.0 This CL fixes several new warnings generated by rustc 1.54.0. Bug: 194812675 Test: m rust Change-Id: I6b767d2fdfbc6cf919bca499a5bb427048983454
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.