Removed unuseful proto fields. Added a better pom.xml documentation. Removed an unuseful logging.

This commit is contained in:
Me Car 2016-01-20 14:39:11 +09:00
parent 379e61f98a
commit 46e560bd94
4 changed files with 4 additions and 9 deletions

View file

@ -16,7 +16,6 @@ public class TableRecorderImpl implements TableRecorder {
public void record(Table table) {
TableProto proto = table.toProto();
logger.info("Adding record:\n" + proto.toString());
TableRecordRepository.instance.add(new TableRecord(proto, proto.getEndTimeMs()));
}
}