如何从android中创建的文件中删除log 4j默认的时间戳和日志级别信息?

时间:2013-03-04 06:40:33

标签: android log4j

我已经通过GitHub中的可用源在sdcard中创建了一个log 4 j文件。这是输出

2013-03-04 06:21:14,097 - [DEBUG::abc::com.newvisioninteractive.androidlog4jprototype.SampleClass] - test test!
2013-03-04 06:21:14,101 - [INFO::abc::com.newvisioninteractive.androidlog4jprototype.SampleClass] - abc

我的问题是删除文件的所有默认信息,例如filecreation&的时间戳。 “DEBUG”或“INFO”包信息。简而言之,我只想要String“测试!”在第一行和第二行文件中的“abc”。

请建议我可能的解决方案。

1 个答案:

答案 0 :(得分:0)

尝试将此添加到方法 configure()

     logConfigurator.setFilePattern("%m%n");