Remove ampfactory start/stop messages from portal log for every connection.

This commit is contained in:
Tehom 2016-10-22 09:01:15 -04:00
parent 242fb0e747
commit 5b07a8bd2c

View file

@ -85,6 +85,7 @@ class AmpServerFactory(protocol.ServerFactory):
This factory creates the Server as a new AMPProtocol instance for accepting This factory creates the Server as a new AMPProtocol instance for accepting
connections from the Portal. connections from the Portal.
""" """
noisy = False
def __init__(self, server): def __init__(self, server):
""" """
Initialize the factory. Initialize the factory.
@ -124,6 +125,7 @@ class AmpClientFactory(protocol.ReconnectingClientFactory):
initialDelay = 1 initialDelay = 1
factor = 1.5 factor = 1.5
maxDelay = 1 maxDelay = 1
noisy = False
def __init__(self, portal): def __init__(self, portal):
""" """