mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
Log the name of each spawned thread at the DEBUG level.
This commit is contained in:
parent
490fb0b140
commit
cc4c143176
@ -61,6 +61,7 @@ class SupyThread(threading.Thread):
|
|||||||
global threadsSpawned
|
global threadsSpawned
|
||||||
threadsSpawned += 1
|
threadsSpawned += 1
|
||||||
super(SupyThread, self).__init__(*args, **kwargs)
|
super(SupyThread, self).__init__(*args, **kwargs)
|
||||||
|
log.debug('Spawning thread %q.', self.getName())
|
||||||
|
|
||||||
commandsProcessed = 0
|
commandsProcessed = 0
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user