diff options
author | Daniel Norman <danielnorman@google.com> | 2021-06-18 15:33:36 -0700 |
---|---|---|
committer | Scott Lobdell <slobdell@google.com> | 2021-06-21 23:21:54 +0000 |
commit | b6d6690a3594cd78966e26508247d4ab1b66776f (patch) | |
tree | 43afd0520ff98b8729b5c8f73ef2ee1c7e77041a /telecomm/java/android/telecom/RemoteConnectionManager.java | |
parent | 71c831703ae59baf47e0afe611fecd714c481cdf (diff) | |
parent | 233ce9ef453bc7b47f7ac5d0eb1d5fda0ce845ab (diff) |
Merge SP1A.210616.001
Change-Id: I9acdc955f698dbebb8fad19cfd5cb71fcdd27b45
Diffstat (limited to 'telecomm/java/android/telecom/RemoteConnectionManager.java')
-rw-r--r-- | telecomm/java/android/telecom/RemoteConnectionManager.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/RemoteConnectionManager.java b/telecomm/java/android/telecom/RemoteConnectionManager.java index f3c7bd83ed4b..fbbfefd9d00e 100644 --- a/telecomm/java/android/telecom/RemoteConnectionManager.java +++ b/telecomm/java/android/telecom/RemoteConnectionManager.java @@ -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()); } } } |