Skip to content

Commit

Permalink
- logger fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Areeb-Gillani committed Sep 2, 2024
1 parent f2dd082 commit 5fa76b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import io.vertx.core.impl.logging.LoggerFactory;

public class AbstractController extends AbstractVerticle {
public Logger logger = LoggerFactory.getLogger(AbstractController.class);
public Logger logger = LoggerFactory.getLogger(this.getClass());
public EventBus eventBus;
@Override
public void start() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import io.vertx.core.impl.logging.LoggerFactory;

public abstract class AbstractService extends AbstractVerticle {
public Logger logger = LoggerFactory.getLogger(AbstractService.class);
public Logger logger = LoggerFactory.getLogger(this.getClass());
public EventBus eventBus;
public EventBus clusteredEventBus;
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import java.util.concurrent.CountDownLatch;

public class BoostApplication extends AbstractVerticle {
Logger logger = LoggerFactory.getLogger(BoostApplication.class);
Logger logger = LoggerFactory.getLogger(this.getClass());
private Vertx localVertx;
private Vertx clusteredVertx;
private JsonObject config;
Expand Down

0 comments on commit 5fa76b0

Please sign in to comment.