vote up 0 vote down star

I have a multi-threading Python program, and a utility function, writeLog(message), that writes out a timestamp followed by the message. Unfortunately, the resultant log file gives no indication of which thread is generating which message.

I would like writeLog() to be able to add something to the message to identify which thread is calling it. Obviously I could just make the threads pass this information in, but that would be a lot more work. Is there some thread equivalent of os.getpid() that I could use?

flag

2 Answers

vote up 4 vote down check

thread.get_ident() works, though thread is deprecated, or threading.current_thread() (or threading.currentThread() in older versions of Python).

link|flag
import threading threading.current_thread().name does just what I need. Thanks. – Charles Anderson May 28 at 9:28
1  
Well, that didn't turn out like I expected. 'threading.current_thread().name' gives me the unique information I needed. Thanks again. – Charles Anderson May 28 at 9:29
Corrected your links Nicholas. I recently realised that if you hover over a title in the docs a little red symbol appears to the right. Copy+paste that for more specific links to the docs :-) – Jon Cage May 28 at 9:31
Thanks. I was wondering where the permalinks had got to in the new documentation format. – Nicholas Riley May 28 at 9:33
vote up 1 vote down

I saw examples of thread IDs like this:

class myThread(threading.Thread):
    def __init__(self, threadID, name, counter):
        self.threadID = threadID
        ...

The threading module docs lists name attribute as well:

...

A thread has a name. 
The name can be passed to the constructor, 
and read or changed through the name attribute.

...

Thread.name

A string used for identification purposes only. 
It has no semantics. Multiple threads may
be given the same name. The initial name is set by the constructor.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.