commit | 2b0440bd000997f73ac1f7894f2be27d804897d5 | [log] [tgz] |
---|---|---|
author | Hungming Chen <nuccachen@google.com> | Fri Mar 27 11:06:27 2020 +0000 |
committer | Nucca Chen <nuccachen@google.com> | Thu Apr 02 01:10:55 2020 +0000 |
tree | d46863bf89705f24c0f604564f1568a59746a778 | |
parent | 65b1e19e1f0d7ddec8a4db25988db6c4ad5fd633 [diff] |
Change logging level from ERROR to INFO for no DNS64 prefix Actually, it is not an error because the network environment may not have a NAT64 server. Bug: 140714781 Test: atest Merged-In: Id7ad35914ac9736c9c465dce9f7b21fdffe76fa7 Change-Id: I6c5ca8b1951f57d8f04af7eca681bb23ce0d4e37 (cherry picked from commit e6b7f170e7dd9ec83cba9e323c06e1b04bfd3393)
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.