Testing 在Grails Spock测试中是否有输出到标准输出的方法?

Testing 在Grails Spock测试中是否有输出到标准输出的方法?,testing,grails,integration-testing,spock,Testing,Grails,Integration Testing,Spock,我希望通过在每个测试开始时输出到STDOUT来跟踪grailsspock集成测试的进度。因此,当测试运行时,来自服务和控制器的日志数据输出以及显示测试开始的输出是混合的 例如: 启动测试1 2012-02-09 13:01:41,375 [main] DEBUG - Adding included service vertex 2 to DAG 2012-02-09 13:01:41,377 [main] DEBUG - Adding this service vertex 4f34262

我希望通过在每个测试开始时输出到STDOUT来跟踪grailsspock集成测试的进度。因此,当测试运行时,来自服务和控制器的日志数据输出以及显示测试开始的输出是混合的

例如:

启动测试1

2012-02-09 13:01:41,375 [main] DEBUG  - Adding included service vertex 2 to DAG

2012-02-09 13:01:41,377 [main] DEBUG  - Adding this service vertex 4f34262584ae3fec6cc2d0f0 to DAG
启动测试2

2012-02-09 13:01:41,377 [main] DEBUG   - Connecting included service vertex 4f34262584ae3fec6cc2d0f0 to 2

2012-02-09 13:01:41,379 [main] DEBUG   - Added all the edges to the DAG for this service 4f34262584ae3fec6cc2d0f0
启动测试3


显示测试的结束。

这在Grails 2.5.3中仍然有效吗?我尝试了此操作,但未从服务中获得log.info输出。
println in cleanup:

grails test-app --echoOut