Merge changes I80bebcd0,I35f3718f into qt-dev
* changes: Simplification of code to prevent a Log.wtf in expected cases. Suppress the wtf log for notifications that are expected
This commit is contained in:
committed by
Android (Google) Code Review
commit
08793a3b64
@@ -232,6 +232,11 @@ public class NetworkNotificationManager {
|
|||||||
title = r.getString(R.string.network_switch_metered, toTransport);
|
title = r.getString(R.string.network_switch_metered, toTransport);
|
||||||
details = r.getString(R.string.network_switch_metered_detail, toTransport,
|
details = r.getString(R.string.network_switch_metered_detail, toTransport,
|
||||||
fromTransport);
|
fromTransport);
|
||||||
|
} else if (notifyType == NotificationType.NO_INTERNET
|
||||||
|
|| notifyType == NotificationType.PARTIAL_CONNECTIVITY) {
|
||||||
|
// NO_INTERNET and PARTIAL_CONNECTIVITY notification for non-WiFi networks
|
||||||
|
// are sent, but they are not implemented yet.
|
||||||
|
return;
|
||||||
} else {
|
} else {
|
||||||
Slog.wtf(TAG, "Unknown notification type " + notifyType + " on network transport "
|
Slog.wtf(TAG, "Unknown notification type " + notifyType + " on network transport "
|
||||||
+ getTransportName(transportType));
|
+ getTransportName(transportType));
|
||||||
|
|||||||
Reference in New Issue
Block a user