1## Logging
2
3This code uses LOG(X) for logging. Log levels are VERBOSE,DEBUG,INFO,WARNING and ERROR.
4The default setting is WARNING and logs relate to WARNING and ERROR will be shown. If
5you want to enable the DEBUG level logs, using following command.
6adb shell service call dnsresolver 10 i32 1
7VERBOSE   0
8DEBUG     1
9INFO      2
10WARNING   3
11ERROR     4
12Verbose resolver logs could contain PII -- do NOT enable in production builds.
13
14