在日志记录的MemoryHandler中容量测量的是什么?

时间:2016-03-01 14:23:49

标签: python logging

Python的logging模块有一个缓冲处理程序MemoryHandler

需要 +------------+------------------------------------------------------------------------------------+-------------------------+ | VehicleReg | XML | ProcessedDate | +------------+------------------------------------------------------------------------------------+-------------------------+ | AB12CBE | <vehicle><vehiclereg>AB12CBE</vehiclereg><anotherprop>BLAH</anotherprop></vehicle> | 2016-03-01 15:21:37.640 | | AB13QQT | <vehicle><vehiclereg>AB13QQT</vehiclereg><anotherprop>BLAH</anotherprop></vehicle> | 2016-03-01 15:21:37.640 | +------------+------------------------------------------------------------------------------------+-------------------------+ 参数。

capacity 的单位是什么?

1 个答案:

答案 0 :(得分:3)

缓冲区的容量是它可以容纳的条目数。每个条目代表一个日志记录事件,对应于记录器记录事件的调用。