All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lontime.exthttp.configuration.WiretapSpec Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.github.lontime.exthttp.configuration;

import java.nio.charset.Charset;

import io.netty.handler.logging.LogLevel;
import lombok.Getter;
import lombok.Setter;
import reactor.netty.transport.logging.AdvancedByteBufFormat;

/**
 * WiretapSpec.
 * @author lontime
 * @since 1.0
 */
@Getter
@Setter
public class WiretapSpec {
    private String category;
    private LogLevel level = LogLevel.DEBUG;
    private AdvancedByteBufFormat format = AdvancedByteBufFormat.HEX_DUMP;
    private Charset charset = Charset.defaultCharset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy