Uses of Interface
org.slf4j.spi.LoggingEventBuilder
Package
Description
Core logging interfaces.
Various SLF4J internal utility and helper classes.
Contains classes and interfaces which are intended for logging backends.
-
Uses of LoggingEventBuilder in org.slf4j
Modifier and TypeMethodDescriptiondefault LoggingEventBuilder
Logger.atDebug()
Entry point for fluent-logging forLevel.DEBUG
level.default LoggingEventBuilder
Logger.atError()
Entry point for fluent-logging forLevel.ERROR
level.default LoggingEventBuilder
Logger.atInfo()
Entry point for fluent-logging forLevel.INFO
level.default LoggingEventBuilder
Make a newLoggingEventBuilder
instance as appropriate for this logger and the desiredLevel
passed as parameter.default LoggingEventBuilder
Logger.atTrace()
Entry point for fluent-logging forLevel.TRACE
level.default LoggingEventBuilder
Logger.atWarn()
Entry point for fluent-logging forLevel.WARN
level.default LoggingEventBuilder
Logger.makeLoggingEventBuilder
(Level level) Make a newLoggingEventBuilder
instance as appropriate for this logger implementation. -
Uses of LoggingEventBuilder in org.slf4j.helpers
-
Uses of LoggingEventBuilder in org.slf4j.spi
Modifier and TypeClassDescriptionclass
Default implementation ofLoggingEventBuilder
.class
A no-operation implementation ofLoggingEventBuilder
.Modifier and TypeMethodDescriptionDefaultLoggingEventBuilder.addArgument
(Object p) DefaultLoggingEventBuilder.addArgument
(Supplier<?> objectSupplier) LoggingEventBuilder.addArgument
(Object p) Add an argument to the event being built.LoggingEventBuilder.addArgument
(Supplier<?> objectSupplier) Add an argument supplier to the event being built.NOPLoggingEventBuilder.addArgument
(Object p) NOP implementation that does nothing.NOPLoggingEventBuilder.addArgument
(Supplier<?> objectSupplier) NOP implementation that does nothing and thus skips calling get() call on the object supplier.DefaultLoggingEventBuilder.addKeyValue
(String key, Object value) DefaultLoggingEventBuilder.addKeyValue
(String key, Supplier<Object> value) LoggingEventBuilder.addKeyValue
(String key, Object value) Add akey value pair
to the event being built.LoggingEventBuilder.addKeyValue
(String key, Supplier<Object> valueSupplier) Add akey value pair
to the event being built.NOPLoggingEventBuilder.addKeyValue
(String key, Object value) NOP implementation that does nothing.NOPLoggingEventBuilder.addKeyValue
(String key, Supplier<Object> value) NOP implementation that doesnothing.Add a marker to the current logging event being built.Amarker
to the event being built.NOP implementation that does nothing.default LoggingEventBuilder
LoggingEventBuilder.arg
(boolean b) Add a value of typeboolean
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(byte b) Add a value of typebyte
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(char c) Add a value of typechar
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(double d) Add a value of typedouble
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(float f) Add a value of typefloat
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(int i) Add a value of typeint
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(long l) Add a value of typelong
to the event being built.default LoggingEventBuilder
LoggingEventBuilder.arg
(short s) Add a value of typeshort
to the event being built.default LoggingEventBuilder
Add an argument to the event being built.default LoggingEventBuilder
Add an argument supplier to the event being built.NOPLoggingEventBuilder.arg
(boolean b) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(byte b) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(char c) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(double d) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(float f) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(int i) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(long l) NOP implementation that does nothing and thus skips the type cast.NOPLoggingEventBuilder.arg
(short s) NOP implementation that does nothing and thus skips the type cast.NOP implementation that does nothing and thus skips calling get() call on the object supplier.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typeboolean
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typebyte
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typechar
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typedouble
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typefloat
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typeint
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typelong
.default LoggingEventBuilder
Add akey value pair
to the event being built, with the value part being of typeshort
.default LoggingEventBuilder
Add akey value pair
to the event being built.default LoggingEventBuilder
Add akey value pair
to the event being built.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that does nothing.NOP implementation that doesnothing.NOP implementation that doesnothing.Set the cause for the logging event being built.NOP implementation that does nothing.DefaultLoggingEventBuilder.setMessage
(String message) DefaultLoggingEventBuilder.setMessage
(Supplier<String> messageSupplier) LoggingEventBuilder.setMessage
(String message) Sets the message of the logging event.LoggingEventBuilder.setMessage
(Supplier<String> messageSupplier) Sets the message of the event via a message supplier.NOPLoggingEventBuilder.setMessage
(String message) NOP implementation that does nothing.NOPLoggingEventBuilder.setMessage
(Supplier<String> messageSupplier) NOP implementation that does nothing.static LoggingEventBuilder
NOPLoggingEventBuilder.singleton()
Returns the singleton instance of this class.