in azure-documentdb-benchmark/src/main/java/com/microsoft/azure/documentdb/benchmark/SimpleTests.java [204:216]
public LatencyLogger(boolean logLatency,
String logFilePath,
long warmupOperations,
long logBatchSize,
boolean printLantecy) {
this.enabled = logLatency;
this.logFilePath = logFilePath;
this.warmupOperations = warmupOperations;
this.operationCount = 0;
this.batchId = 0;
this.logBatchSize = logBatchSize;
this.printLatency = printLantecy;
}