Merge "Add additional debug" am: 678258626a

Original change: undetermined

Change-Id: Iff980032abe6e7a55e981f4a904c11ae430c5e11
This commit is contained in:
Wink Saville
2021-05-31 05:24:24 +00:00
committed by Automerger Merge Worker

View File

@@ -992,11 +992,15 @@ private NetworkStateTracker makeWimaxStateTracker() {
NetworkInfo ni = network.getNetworkInfo();
if (ni.isAvailable() == false) {
if (DBG) log("special network not available");
if (!TextUtils.equals(feature,Phone.FEATURE_ENABLE_DUN_ALWAYS)) {
if (DBG) log("special network not available ni=" + ni.getTypeName());
return Phone.APN_TYPE_NOT_AVAILABLE;
} else {
// else make the attempt anyway - probably giving REQUEST_STARTED below
if (DBG) {
log("special network not available, but try anyway ni=" +
ni.getTypeName());
}
}
}