I have the following Logger I want to mock out, but to validate log entries are getting called, not for the content.
private static Logger logger =
I think you can reset the invocations using Mockito.reset(mockLog). You should call this before every test, so inside @Before would be a good place.