From 30c7f0f677389a1dfae3d87e7e8e8b704817a022 Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Tue, 9 Feb 2010 08:13:53 -0800 Subject: [PATCH] Enabling printing of hub exceptions by default, because that's bitten me in the ass a bunch of times lately. --- eventlet/hubs/hub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventlet/hubs/hub.py b/eventlet/hubs/hub.py index 74371f5..56b6c2a 100644 --- a/eventlet/hubs/hub.py +++ b/eventlet/hubs/hub.py @@ -234,7 +234,7 @@ class BaseHub(object): sys.stderr.write("Timer raised: %r\n" % (timer,)) sys.stderr.flush() - squelch_timer_exception = _silent_squelch_timer_exception + squelch_timer_exception = _debug_squelch_timer_exception def _add_absolute_timer(self, when, info): # the 0 placeholder makes it easy to bisect_right using (now, 1)