final Throwable throwable = new Throwable();
final boolean output = true;
final MockLogTarget target = new MockLogTarget();
final LogkitLogger logger = createLogger( target, level );
logger.debug( message, throwable );
checkLogger( target, output, message, throwable, type );
}
public void testLogkitLoggerDebugWithExceptionDisabled()
throws Exception