Custom test output

I would like some of my functional tests to output something additional to the standard output. It could be directly in the terminal, in the test log, or somewhere else. How can I do that?

Thanks in advance! (:

RAILS_DEFAULT_LOGGER.info "some text or whatever" would work and output to test.log

Thorsten Mueller wrote:

RAILS_DEFAULT_LOGGER.info "some text or whatever" would work and output to test.log

Thanks! Works fine and my bug is fixed.