io.github.logcontext.LoggingContextServiceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logging-context-api Show documentation
Show all versions of logging-context-api Show documentation
The primary API for the logging context wrapper.
package io.github.logcontext;
public interface LoggingContextServiceProvider {
/**
* Creates a new instance of a LogContext.Builder specific to the provider implementation.
*
* @return a new instance of a LogContext.Builder specific to the provider implementation.
*/
LogContext.Builder logContextBuilder();
}