commit | 18cebe28023749682ab3a6f5db6d5843fdd33581 | [log] [tgz] |
---|---|---|
author | Hungming Chen <nuccachen@google.com> | Fri Mar 27 15:47:22 2020 +0800 |
committer | Hungming Chen <nuccachen@google.com> | Fri Mar 27 15:56:34 2020 +0800 |
tree | ea14ac354d5375c36e6766ba0dda175452ed2951 | |
parent | fe5b82ece4576b32ceea1e660c007b3b8a2f611e [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. Test: atest Change-Id: Id7ad35914ac9736c9c465dce9f7b21fdffe76fa7
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.