Skip to content

Commit

Permalink
update the info log for SBM.
Browse files Browse the repository at this point in the history
Signed-off-by: Keshava Munegowda <keshava.gowda@gmail.com>
  • Loading branch information
kmgowda committed Aug 17, 2024
1 parent 93e3f45 commit 9e0c442
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sbm/src/main/java/io/sbm/api/impl/SbmLatencyBenchmark.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void run() throws InterruptedException {
MessageLatenciesRecord record;
boolean doWork = true;
boolean notFound;
Printer.log.info("LatenciesRecord Benchmark Started");
Printer.log.info("SbmLatencyBenchmark Started");
long currentTime = time.getCurrentTime();
window.start(currentTime);
window.startWindow(currentTime);
Expand Down Expand Up @@ -131,10 +131,10 @@ private void shutdown(Throwable ex) {
qFuture = null;
}
if (ex != null) {
Printer.log.warn("LatenciesRecord Benchmark with Exception:" + ex);
Printer.log.warn("SbmLatencyBenchmark with Exception:" + ex);
retFuture.completeExceptionally(ex);
} else {
Printer.log.info("LatenciesRecord Benchmark Shutdown");
Printer.log.info("SbmLatencyBenchmark Shutdown");
retFuture.complete(null);
}
}
Expand Down

0 comments on commit 9e0c442

Please sign in to comment.