Let's say you write a web driver test with a JUnit After annotation to make sure that your test remove any data it has created even if the test fails. That's nice.
Webdriver takes a screenshot when it fails which is useful to quickly understand why your test failed.
The problem is when using After annotation, the screenshot is taken at the very end of the test and we only see the logout page.