Merge "Fix faulty log statement" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-02-04 23:11:32 +00:00
committed by Android (Google) Code Review

View File

@@ -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);