@Test
public void testIndirectFatalLogMessageWithException() {
String msg = "testIndirectFatalLogMessageWithException";
Logger logger = Logger.getLogger(getClass());
Throwable t = new IllegalArgumentException(msg);
logger.log(Level.FATAL, msg, t);
assertLoggingOperation(logger, "FATAL", msg, t);
}
@Override
public Log4jLoggingOperationCollectionAspect getAspect() {