Skip to content

Commit

Permalink
- worker name added in logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Areeb-Gillani committed Aug 30, 2024
1 parent 7f83555 commit 146d581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/github/areebgillani/boost/Booster.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ private void deployWorkers(JsonObject config, Supplier<Verticle> serviceSupplier
.setInstances(workerConfig.getInteger("instance", 5))
.setWorker(true), res -> {
if (res.succeeded())
logger.info("Deployment Successful.");
logger.info(workerName+" successfully deployed.");
else
logger.error("Deployment Failed." + res.cause());
logger.error(workerName+" deployment failed." + res.cause());
});
}
}

0 comments on commit 146d581

Please sign in to comment.