Remove log msg

This commit is contained in:
Jonathan Frederic 2016-01-11 12:52:35 -08:00
parent 4c99c5f7f8
commit f83485fcee

View File

@ -303,7 +303,6 @@ class ZMQChannelsHandler(AuthenticatedZMQStreamHandler):
msg_rate = float(self._iopub_msg_count) / elapsed_time msg_rate = float(self._iopub_msg_count) / elapsed_time
data_rate = float(self._iopub_byte_count) / elapsed_time data_rate = float(self._iopub_byte_count) / elapsed_time
self.log.warn('check msg/s{} & bytes/s{}'.format(msg_rate, data_rate))
self._iopub_msg_count = 0 self._iopub_msg_count = 0
self._iopub_byte_count = 0 self._iopub_byte_count = 0