final int threadsWaitingForceThreshold = -1;
final String logFileDir = System.getProperty("java.io.tmpdir");
try {
transactionLog = new HOWLLog(bufferClassName, bufferSizeKBytes, checksumEnabled, adler32Checksum,
flushSleepTimeMilliseconds, logFileDir, logFileExt, logFileName, maxBlocksPerFile, maxBuffers,
maxLogFiles, minBuffers, threadsWaitingForceThreshold, new XidFactoryImpl(), null);
((HOWLLog) transactionLog).doStart();
} catch (Exception e) {
throw new RuntimeException(e);
}
}