From cc4c143176dfe784da2248e5e7cf20290bc591f5 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 8 Jun 2005 03:53:00 +0000 Subject: [PATCH] Log the name of each spawned thread at the DEBUG level. --- src/world.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/world.py b/src/world.py index 67fd40f26..a45096a37 100644 --- a/src/world.py +++ b/src/world.py @@ -61,6 +61,7 @@ class SupyThread(threading.Thread): global threadsSpawned threadsSpawned += 1 super(SupyThread, self).__init__(*args, **kwargs) + log.debug('Spawning thread %q.', self.getName()) commandsProcessed = 0