logger.fatal( "This is a fatal with class as an object" + ILogger.FATAL, new Throwable() ); //$NON-NLS-1$
logger.info( "This is an info with class as an object" + ILogger.INFO ); //$NON-NLS-1$
logger.info( "This is an info with class as an object" + ILogger.INFO, new Throwable() ); //$NON-NLS-1$
logger.trace( "This is a trace with class as an object" + ILogger.TRACE, new Throwable() ); //$NON-NLS-1$
logger.trace( "This is a trace with class as a string" + ILogger.TRACE, new Throwable() ); //$NON-NLS-1$
logger.trace( "This is a trace test" ); //$NON-NLS-1$
Assert.assertTrue( true );
}