-
Notifications
You must be signed in to change notification settings - Fork 43
Log Collector
When you run your tests there could occur some events logged in Error log. Those data are also stored in workspace directory in file ~/workspace/.metadata/.log. Usually user would have to collect some error manually at every tests, or at least there would have to be some hooking.
Log collector stores log entries to files located at folder target/reddeer-log. Each test class has its own file with config prefix and date suffix. Log collector collects log entries at the very start of test class execution as first BeforeClass extension, then for each test method (from Before extensions to After extensions) and in the end of test class execution as last AfterClass extension.
Log collector is enabled by default. You can turn it on/off by setting property rd.logCollectorEnabled to true or false.