我想知道是否可以在没有时间戳和模块名称的情况下仅在 absl python 中记录 msg 字符串。例子
I0108 23:40:57.153055 140614090106688 extractor.py:79] processing file: dfcsdf
I0108 23:40:57.162382 140614090106688 extractor.py:72] ['/topic/fdfgd', dfgsdf']
I0108 23:40:57.162861 140614090106688 extractor.py:79] processing file: f456546fd
I0108 23:40:57.171764 140614090106688 extractor.py:72] ['/topic/1', '/topic/2', '/topic/3']
是否有配置只记录如下消息
processing file: dfcsdf
['/topic/fdfgd', dfgsdf']
processing file: f456546fd
['/topic/1', '/topic/2', '/topic/3']
我知道我可以用控制台的打印替换日志记录或编写自定义记录器,我想知道它是否可能在 absl 日志记录中?