Log the name of each spawned thread at the DEBUG level.

This commit is contained in:
Jeremy Fincher 2005-06-08 03:53:00 +00:00
parent 490fb0b140
commit cc4c143176
1 changed files with 1 additions and 0 deletions

View File

@ -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