VOL-1714 Fixes an issue where flow_stats reply in ofagent fails.

Change-Id: I4291db3065b320b56ab6003b4097533e5d2a7d96
diff --git a/python/ofagent/grpc_client.py b/python/ofagent/grpc_client.py
index 508ce5c..7f6d274 100755
--- a/python/ofagent/grpc_client.py
+++ b/python/ofagent/grpc_client.py
@@ -172,11 +172,13 @@
             packet_in = yield self.packet_in_queue.get()
             device_id = packet_in.id
             ofp_packet_in = packet_in.packet_in
+            self.log.debug('grpc client to send packet-in')
             self.connection_manager.forward_packet_in(device_id, ofp_packet_in)
             if self.stopped:
                 break
 
     def send_packet_out(self, device_id, packet_out):
+        self.log.debug('grpc client to send packet-out')
         packet_out = PacketOut(id=device_id, packet_out=packet_out)
         self.packet_out_queue.put(packet_out)