Merge "Downgrade DNS fail message from Error to Warning" am: 374a06673e

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1662360

Change-Id: Ife7da1c0494d24e140ea9fdc64f7018340cc3e40
This commit is contained in:
Ken Chen
2021-04-06 06:55:39 +00:00
committed by Automerger Merge Worker

View File

@@ -500,7 +500,7 @@ public final class DnsResolver {
try { try {
resp = resNetworkResult(fd); // Closes fd, marks it invalid. resp = resNetworkResult(fd); // Closes fd, marks it invalid.
} catch (ErrnoException e) { } catch (ErrnoException e) {
Log.e(TAG, "resNetworkResult:" + e.toString()); Log.w(TAG, "resNetworkResult:" + e.toString());
exception = e; exception = e;
} }
} }