leave state-machine tracing code (but commented)

This commit is contained in:
meejah 2021-04-14 16:33:21 -06:00
parent 786cd08350
commit 7b92c3701e
2 changed files with 10 additions and 11 deletions
src/wormhole_transit_relay

View File

@ -471,6 +471,5 @@ class TransitServerState(object):
outputs=[],
)
## XXX tracing
set_trace_function = _machine._setTrace
# uncomment to turn on state-machine tracing
# set_trace_function = _machine._setTrace

View File

@ -74,10 +74,10 @@ class TransitConnection(LineReceiver):
except AttributeError:
pass
if False:
def tracer(oldstate, theinput, newstate):
print("TRACE: {}: {} --{}--> {}".format(id(self), oldstate, theinput, newstate))
self._state.set_trace_function(tracer)
# uncomment to turn on state-machine tracing
# def tracer(oldstate, theinput, newstate):
# print("TRACE: {}: {} --{}--> {}".format(id(self), oldstate, theinput, newstate))
# self._state.set_trace_function(tracer)
def lineReceived(self, line):
"""
@ -227,10 +227,10 @@ class WebSocketTransitConnection(WebSocketServerProtocol):
self.factory.transit.usage,
)
if False:
def tracer(oldstate, theinput, newstate):
print("WSTRACE: {}: {} --{}--> {}".format(id(self), oldstate, theinput, newstate))
self._state.set_trace_function(tracer)
# uncomment to turn on state-machine tracing
# def tracer(oldstate, theinput, newstate):
# print("WSTRACE: {}: {} --{}--> {}".format(id(self), oldstate, theinput, newstate))
# self._state.set_trace_function(tracer)
def onOpen(self):
self._state.connection_made(self)