Example usage for io.vertx.core.logging Logger subclass-usage

List of usage examples for io.vertx.core.logging Logger subclass-usage

Introduction

In this page you can find the example usage for io.vertx.core.logging Logger subclass-usage.

Usage

From source file space.xkr47.vertx.acme4j.util.ContextLogger.java

public class ContextLogger extends Logger {
    private final String prefix;

    public ContextLogger(Class<?> clazz, String... context) {
        super(getLogger(clazz).getDelegate());
        this.prefix = '<' + String.join(" ", context) + "> ";