io.freefair.spring.okhttp.autoconfigure.logging.OkHttp3LoggingInterceptorProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okhttp-spring-boot-autoconfigure Show documentation
Show all versions of okhttp-spring-boot-autoconfigure Show documentation
OkHttp Spring Boot AutoConfigure
package io.freefair.spring.okhttp.autoconfigure.logging;
import lombok.Data;
import okhttp3.logging.HttpLoggingInterceptor;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* @author Lars Grefer
*/
@Data
@ConfigurationProperties(prefix = "okhttp.logging")
public class OkHttp3LoggingInterceptorProperties {
/**
* The level at which the HttpLoggingInterceptor logs.
*/
private HttpLoggingInterceptor.Level level = HttpLoggingInterceptor.Level.NONE;
}