Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e95af44a authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Remove Slog usage in NetworkState"

parents cb35ed09 7b7cffe3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ import android.compat.annotation.UnsupportedAppUsage;
import android.os.Build;
import android.os.Parcel;
import android.os.Parcelable;
import android.util.Slog;
import android.util.Log;

/**
 * Snapshot of network state.
@@ -83,7 +83,7 @@ public class NetworkState implements Parcelable {
        if (VALIDATE_ROAMING_STATE && networkInfo != null && networkCapabilities != null) {
            if (networkInfo.isRoaming() == networkCapabilities
                    .hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_ROAMING)) {
                Slog.wtf("NetworkState", "Roaming state disagreement between " + networkInfo
                Log.wtf("NetworkState", "Roaming state disagreement between " + networkInfo
                        + " and " + networkCapabilities);
            }
        }