commit | 88d5702da2fd9d57f496babe594e967e7417b41d | [log] [tgz] |
---|---|---|
author | Chris Wailes <chriswailes@google.com> | Mon Jul 26 19:19:33 2021 -0700 |
committer | Chris Wailes <chriswailes@google.com> | Tue Jul 27 09:40:21 2021 -0700 |
tree | a479a7729d2e756e5cb1875b90bf406c215db148 | |
parent | 53d3eb2a49e34ecb6015f92f4055517d52a77c2b [diff] |
Fix warnings in preperatin for Rust 1.53.0 This CL fixes several new warnings generated by rustc 1.53.0. Bug: 194400612 Test: m rust Change-Id: Ibe6471f286fb0417a429dafa8771dcdb1c43fe45
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.