我正在运行一个扭曲的Python应用程序,并且已成功为其生成日志。这是日志:
2019-02-13 15:57:44+0530 Log opened.
2019-02-13 15:57:44+0530 twistd 13.2.0 (/usr/bin/python 2.7.6) starting up.
2019-02-13 15:57:44+0530 reactor class: twisted.internet.epollreactor.EPollR
eactor.
2019-02-13 15:57:44+0530 WebApplication starting on 7777
2019-02-13 15:57:44+0530 Starting factory <__builtin__.WebApplication instan
ce at 0x7ff71fd83f38>
2019-02-13 15:57:44+0530 Starting factory <olsr_client.JsonFactory instance
at 0x7ff71fd83050>
与完整软件关联的所有日志都保存在一个文件中。对于Twisted python,我想在日志中添加前缀,以便可以将相关日志与其他日志区分开。例如:
2019-02-13 15:57:44+0530 [MABL] WebApplication starting on 7777
OR
[MABL]2019-02-13 15:57:44+0530 WebApplication starting on 7777
是否可以在Twisted Python中完成它?