Merge "Use Log instead of Slog in QosCallbackAgentConnection" am: 9c6d3c889f am: 350f592cc9

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Iad988b171f6871e728381fa046f03765391bf5fd
This commit is contained in:
Treehugger Robot
2021-03-04 04:22:51 +00:00
committed by Automerger Merge Worker

View File

@@ -27,7 +27,7 @@ import android.net.QosSession;
import android.os.IBinder;
import android.os.RemoteException;
import android.telephony.data.EpsBearerQosSessionAttributes;
import android.util.Slog;
import android.util.Log;
import java.util.Objects;
@@ -175,18 +175,14 @@ class QosCallbackAgentConnection implements IBinder.DeathRecipient {
}
private static void log(@NonNull final String msg) {
Slog.d(TAG, msg);
Log.d(TAG, msg);
}
private static void logw(@NonNull final String msg) {
Slog.w(TAG, msg);
Log.w(TAG, msg);
}
private static void loge(@NonNull final String msg, final Throwable t) {
Slog.e(TAG, msg, t);
}
private static void logwtf(@NonNull final String msg) {
Slog.wtf(TAG, msg);
Log.e(TAG, msg, t);
}
}