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

Commit b670ffd0 authored by Jin Seok Park's avatar Jin Seok Park
Browse files

Change Slog usage to Log

There are currently no plans to make Slog into @SystemApi.
See b/143145452 for reference.

Bug: 160780506
Test: build
Change-Id: Ic41351ce20d08f7292c5b32d7cc0af60c7fa71b7
parent b19564f7
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ import android.os.RemoteException;
import android.os.UserHandle;
import android.os.UserManager;
import android.util.Log;
import android.util.Slog;

import com.android.server.SystemService;

@@ -53,7 +52,7 @@ public class MediaResourceMonitorService extends SystemService {
        public void notifyResourceGranted(int pid, int type)
                throws RemoteException {
            if (DEBUG) {
                Slog.d(TAG, "notifyResourceGranted(pid=" + pid + ", type=" + type + ")");
                Log.d(TAG, "notifyResourceGranted(pid=" + pid + ", type=" + type + ")");
            }
            final long identity = Binder.clearCallingIdentity();
            try {