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

Commit 792a5985 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix faulty log statement" into sc-dev

parents 70b6c098 b28a6e05
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2459,7 +2459,7 @@ public abstract class ConnectionService extends Service {
    }

    private void onCallFilteringCompleted(String callId, boolean isBlocked, boolean isInContacts) {
        Log.i(this, "onCallFilteringCompleted(%s, %b, %b)", isBlocked, isInContacts);
        Log.i(this, "onCallFilteringCompleted(%b, %b)", isBlocked, isInContacts);
        Connection connection = findConnectionForAction(callId, "onCallFilteringCompleted");
        if (connection != null) {
            connection.onCallFilteringCompleted(isBlocked, isInContacts);