From 5b07a8bd2c8cbfb105ea2f2095f18dd733a83903 Mon Sep 17 00:00:00 2001 From: Tehom Date: Sat, 22 Oct 2016 09:01:15 -0400 Subject: [PATCH] Remove ampfactory start/stop messages from portal log for every connection. --- evennia/server/amp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evennia/server/amp.py b/evennia/server/amp.py index c75396d27d..2fee354fd3 100644 --- a/evennia/server/amp.py +++ b/evennia/server/amp.py @@ -85,6 +85,7 @@ class AmpServerFactory(protocol.ServerFactory): This factory creates the Server as a new AMPProtocol instance for accepting connections from the Portal. """ + noisy = False def __init__(self, server): """ Initialize the factory. @@ -124,6 +125,7 @@ class AmpClientFactory(protocol.ReconnectingClientFactory): initialDelay = 1 factor = 1.5 maxDelay = 1 + noisy = False def __init__(self, portal): """