Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.LogFormatter.1.py
2016-05-18 16:38:18 -07:00

8 lines
264 B
Python

class LogFormatterWithThread(wx.LogFormatter):
def Format(level, msg, info):
return "[%d] %s(%d) : %s" % \
(info.threadId, info.filename, info.line, msg)