LoggingEventBuilder |
LoggingEventBuilder.addKeyValue(String key,
boolean value) |
Adds key with boolean value to the context of current log being created.
|
LoggingEventBuilder |
LoggingEventBuilder.addKeyValue(String key,
long value) |
Adds key with long value to the context of current log event being created.
|
LoggingEventBuilder |
LoggingEventBuilder.addKeyValue(String key,
Object value) |
Adds key with Object value to the context of current log being created.
|
LoggingEventBuilder |
LoggingEventBuilder.addKeyValue(String key,
String value) |
Adds key with String value pair to the context of current log being created.
|
LoggingEventBuilder |
LoggingEventBuilder.addKeyValue(String key,
Supplier<String> valueSupplier) |
Adds key with String value supplier to the context of current log event being created.
|
LoggingEventBuilder |
ClientLogger.atError() |
Creates LoggingEventBuilder for error log level that can be
used to enrich log with additional context.
|
LoggingEventBuilder |
ClientLogger.atInfo() |
Creates LoggingEventBuilder for info log level that can be
used to enrich log with additional context.
|
LoggingEventBuilder |
ClientLogger.atVerbose() |
Creates LoggingEventBuilder for verbose log level that can be
used to enrich log with additional context.
|
LoggingEventBuilder |
ClientLogger.atWarning() |
Creates LoggingEventBuilder for warning log level that can be
used to enrich log with additional context.
|