예제 #1
0
 def dispatcher(self, sock, data):
     """just enclosure of CMD dispatcher"""
     try:
         CMD.dispatcher(self, sock, data)
     except Exception as e:
         self.logger.error('unknow message: %s from %s'%(data, self.node.sockets[sock]))
         self.logger.exception("\n----------------\n the error is: \n" + \
                 str(e) + \
                 "\n----------------\n")
         self.node.send(sock, 'you have sent me a unknown message')
예제 #2
0
 def dispatcher(self, sock, data):
     """just enclosure of CMD dispatcher"""
     try:
         CMD.dispatcher(self, sock, data)
     except Exception as e:
         self.logger.error('unknow message: %s from %s' %
                           (data, self.node.sockets[sock]))
         self.logger.exception("\n----------------\n the error is: \n" + \
                 str(e) + \
                 "\n----------------\n")
         self.node.send(sock, 'you have sent me a unknown message')