Yuta HIGUCHI

ClusterMessagingProtocolClient: add log

Change-Id: Ic85fc765cc4140af0d69fd4ccccd091634b8deca
...@@ -145,6 +145,7 @@ public class ClusterMessagingProtocolClient implements ProtocolClient { ...@@ -145,6 +145,7 @@ public class ClusterMessagingProtocolClient implements ProtocolClient {
145 future.completeExceptionally(e); 145 future.completeExceptionally(e);
146 } 146 }
147 } catch (Exception e) { 147 } catch (Exception e) {
148 + log.warn("RPCTask for {} terribly failed.", request, e);
148 future.completeExceptionally(e); 149 future.completeExceptionally(e);
149 } 150 }
150 } 151 }
......