Skip to content

Commit

Permalink
replace println with logger
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed May 12, 2022
1 parent 3a828f6 commit d9726a3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/main/java/io/cryostat/Cryostat.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,12 @@ public static void main(String[] args) throws Exception {
.deployVerticle(
client.httpServer(),
new DeploymentOptions().setWorker(false),
res -> {
System.out.println("HTTP Server Verticle Started");
});
res -> logger.info("HTTP Server Verticle Started"));
client.vertx()
.deployVerticle(
client.webServer(),
new DeploymentOptions().setWorker(true),
res -> {
System.out.println("WebServer Verticle Started");
});
res -> logger.info("WebServer Verticle Started"));
client.messagingServer().start();
client.platformClient().start();
client.recordingMetadataManager().load();
Expand Down

0 comments on commit d9726a3

Please sign in to comment.