mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-24 11:42:52 +01:00
Added verbose log for spawning CommandThreads.
This commit is contained in:
parent
6b0fbdc324
commit
51a474dd14
@ -366,6 +366,7 @@ class CommandThread(threading.Thread):
|
|||||||
name = '%s.%s with args %r' % (self.className, self.commandName, args)
|
name = '%s.%s with args %r' % (self.className, self.commandName, args)
|
||||||
threading.Thread.__init__(self, target=command, name=name,
|
threading.Thread.__init__(self, target=command, name=name,
|
||||||
args=(irc, msg, args))
|
args=(irc, msg, args))
|
||||||
|
debug.msg('Spawning thread %s' % name, 'verbose')
|
||||||
self.irc = irc
|
self.irc = irc
|
||||||
self.msg = msg
|
self.msg = msg
|
||||||
self.setDaemon(True)
|
self.setDaemon(True)
|
||||||
|
Loading…
Reference in New Issue
Block a user