【发布时间】:2019-12-13 20:09:52
【问题描述】:
python的logging module中的LogRecord有一个LogRecord定义为:
class LogRecord(object):
"""
A LogRecord instance represents an event being logged.
LogRecord instances are created every time something is logged. They
contain all the information pertinent to the event being logged. The
main information passed in is in msg and args, which are combined
using str(msg) % args to create the message field of the record. The
record also includes information such as when the record was created,
the source line where the logging call was made, and any exception
information to be logged.
"""
def __init__(self, name, level, pathname, lineno,
msg, args, exc_info, func=None, sinfo=None, **kwargs):
"""
Initialize a logging record with interesting information.
"""
ct = time.time()
self.name = name
self.msg = msg
# more stuff below
创建此LogRecord,例如每当有人执行logging 操作时,例如:
def my_func():
logging.info('Hello %s', 'Person')
return 1
在上面的logger调用中,变量可以推断为:
name = 'root' # using the root logger since calling `logging.`
level = 'INFO' # or, 20
msg = 'Hello %s'
args = ('Person',)
内省如何从我的logging 电话中收集其他项目?例如:
- 路径名
- 亚麻布
- exc_info
- 功能
- sinfo # 这是什么?
- kwargs # 这只是用户添加的 kwargs,还是其他?
例如,在您的回答中,您能否展示一个对函数调用进行自省以收集上述信息的示例?
【问题讨论】:
-
调试器可以回答它
-
@jfs -- 你想举一个例子来说明如何做到这一点吗?
标签: python logging python-internals