Log supported ip types when binding
This commit is contained in:
parent
a5e63de016
commit
f42d088fbc
1 changed files with 4 additions and 4 deletions
|
@ -84,10 +84,10 @@ class ConnectionServer(object):
|
|||
self.log.info("No port found, not binding")
|
||||
return False
|
||||
|
||||
self.log.debug("Binding to: %s:%s, (msgpack: %s), supported crypt: %s" % (
|
||||
self.ip, self.port,
|
||||
".".join(map(str, msgpack.version)), CryptConnection.manager.crypt_supported)
|
||||
)
|
||||
self.log.debug("Binding to: %s:%s, (msgpack: %s), supported crypt: %s, supported ip types: %s" % (
|
||||
self.ip, self.port, ".".join(map(str, msgpack.version)),
|
||||
CryptConnection.manager.crypt_supported, self.supported_ip_types
|
||||
))
|
||||
try:
|
||||
self.pool = Pool(500) # do not accept more than 500 connections
|
||||
self.stream_server = StreamServer(
|
||||
|
|
Loading…
Reference in a new issue