1

I would like to be able to write my own log lines into the console log of Thucydides. However, when i try using the log4j, slf4j or Apache commons logging, i can write the Thucydides logs into a file with my log entries, but I cannot see my lines in the console (in Eclipse in my case).

How can I write to Thucydides's console log?

Ibolit
  • 9,218
  • 7
  • 52
  • 96

1 Answers1

2

If you use ThucydidesRunner try use this:

  1. create field in class:

private static final Logger LOGGER = LoggerFactory.getLogger(ThucydidesRunner.class);

  1. in test use:

LOGGER.info("My log info");