我正在maven github存储库中执行测试。
我想在测试阶段使用命令mvn clean test -X >> debug.log
在完全执行测试之后,我看不到包含这些打印语句的日志。
以下命令返回空结果
1. $ grep -n "messages +" debug.log
2. $ grep -n "starting testP0" debug.log
3. $ grep -n "request is" debug.log
4. $ grep -n "ending testP0" debug.log
如何在控制台中将这些打印语句放在Java源文件和测试文件中?