Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(service): revert socket log
Browse files Browse the repository at this point in the history
  • Loading branch information
Han Xiao authored Oct 15, 2019
1 parent 40fa503 commit 6008f7d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gnes/service/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,11 +413,11 @@ def _run(self, ctx):
self.logger.info('output %s:%s' % (self.args.host_out, colored(self.args.port_out, 'yellow')))


# self.logger.info(
# 'input %s:%s\t output %s:%s\t control over %s' % (
# self.args.host_in, colored(self.args.port_in, 'yellow'),
# self.args.host_out, colored(self.args.port_out, 'yellow'),
# colored(ctrl_addr, 'yellow')))
self.logger.info(
'input %s:%s\t output %s:%s\t control over %s' % (
self.args.host_in, colored(self.args.port_in, 'yellow'),
self.args.host_out, colored(self.args.port_out, 'yellow'),
colored(ctrl_addr, 'yellow')))

poller = zmq.Poller()
poller.register(in_sock, zmq.POLLIN)
Expand Down

0 comments on commit 6008f7d

Please sign in to comment.