Merge "Add error log of addConnetionService in RemoteConnectionManager." into sc-dev

This commit is contained in:
Grace Jia 2021-06-04 16:36:21 +00:00 committed by Android (Google) Code Review
commit b150ae9b2a

View File

@ -45,7 +45,10 @@ public class RemoteConnectionManager {
outgoingConnectionServiceRpc,
mOurConnectionServiceImpl);
mRemoteConnectionServices.put(componentName, remoteConnectionService);
} catch (RemoteException ignored) {
} catch (RemoteException e) {
Log.w(RemoteConnectionManager.this,
"error when addConnectionService of %s: %s", componentName,
e.toString());
}
}
}