Package io.quarkus.runtime.logging
Interface LogRuntimeConfig.AsyncConfig
- Enclosing interface:
- LogRuntimeConfig
public static interface LogRuntimeConfig.AsyncConfig
-
Method Summary
Modifier and TypeMethodDescriptionboolean
enable()
Indicates whether to log asynchronouslyorg.jboss.logmanager.handlers.AsyncHandler.OverflowAction
overflow()
Determine whether to block the publisher (rather than drop the message) when the queue is fullint
The queue length to use before flushing writing
-
Method Details
-
enable
@WithParentName @WithDefault("false") boolean enable()Indicates whether to log asynchronously -
queueLength
@WithDefault("512") int queueLength()The queue length to use before flushing writing -
overflow
@WithDefault("block") org.jboss.logmanager.handlers.AsyncHandler.OverflowAction overflow()Determine whether to block the publisher (rather than drop the message) when the queue is full
-