cleanup(logFile);
}
@Test
public void testLog() throws Exception {
LogFile logFile = writer.create(null, CREDENTIALS, "");
Mutation m = new Mutation(new Text("somerow"));
m.put(new Text("cf1"), new Text("cq1"), new Value("value1".getBytes()));
writer.log(null, logFile.id, 2, 42, m.toThrift());
writer.close(null, logFile.id);
SequenceFile.Reader dis = readOpen(logFile);