Package | Description |
---|---|
ch.qos.logback.classic.html |
Contains classes to format log output in HTML.
|
ch.qos.logback.classic.pattern |
Provides classes implementing format specifiers in conversion patterns.
|
ch.qos.logback.core.html |
Contains the base classes needed to format logging events to HTML.
|
ch.qos.logback.core.pattern |
Contains the base classes used by PatternLayout.
|
ch.qos.logback.core.pattern.parser | |
ch.qos.logback.core.rolling.helper |
Internal helper classes used by
ch.qos.logback.core.rolling package. |
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
HTMLLayout.computeConverterName(Converter c) |
Modifier and Type | Class and Description |
---|---|
class |
CallerDataConverter
This converter outputs caller data depending on depth and marker data.
|
class |
ClassicConverter
This class serves the super-class of all converters in logback.
|
class |
ClassOfCallerConverter |
class |
ContextNameConverter
Converts an event to the logger context's name.
|
class |
DateConverter |
class |
ExtendedThrowableProxyConverter |
class |
FileOfCallerConverter |
class |
LevelConverter
Return the event's level.
|
class |
LineOfCallerConverter |
class |
LineSeparatorConverter |
class |
LoggerConverter |
class |
MarkerConverter
Return the event's marker value(s).
|
class |
MDCConverter |
class |
MessageConverter
Return the event's message.
|
class |
MethodOfCallerConverter |
class |
NamedConverter |
class |
NopThrowableInformationConverter
Always returns an empty string.
|
class |
PropertyConverter |
class |
RelativeTimeConverter |
class |
RootCauseFirstThrowableProxyConverter |
class |
SyslogStartConverter |
class |
ThreadConverter
Return the events thread (usually the current thread).
|
class |
ThrowableHandlingConverter
Converter which handle throwables should be derived from this class.
|
class |
ThrowableProxyConverter
Add a stack trace in case the event contains a Throwable.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EnsureExceptionHandling.chainHandlesThrowable(Converter head)
This method computes whether a chain of converters handles exceptions or
not.
|
void |
EnsureExceptionHandling.process(Converter<ILoggingEvent> head)
This implementation checks if any of the converters in the chain handles
exceptions.
|
Modifier and Type | Field and Description |
---|---|
protected Converter<E> |
HTMLLayoutBase.head |
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
HTMLLayoutBase.computeConverterName(Converter c) |
Modifier and Type | Class and Description |
---|---|
class |
CompositeConverter<E> |
class |
DynamicConverter<E> |
class |
FormattingConverter<E> |
class |
IdentityCompositeConverter<E> |
class |
LiteralConverter<E> |
class |
ReplacingCompositeConverter<E> |
Modifier and Type | Method and Description |
---|---|
static <E> Converter<E> |
ConverterUtil.findTail(Converter<E> head) |
Converter<E> |
Converter.getNext() |
Modifier and Type | Method and Description |
---|---|
static <E> Converter<E> |
ConverterUtil.findTail(Converter<E> head) |
void |
PostCompileProcessor.process(Converter<E> head)
Post compile processing of the converter chain.
|
void |
CompositeConverter.setChildConverter(Converter<E> child) |
protected void |
PatternLayoutBase.setContextForConverters(Converter<E> head) |
void |
Converter.setNext(Converter<E> next) |
static void |
ConverterUtil.startConverters(Converter head)
Start converters in the chain of converters.
|
Modifier and Type | Method and Description |
---|---|
Converter<E> |
Parser.compile(Node top,
java.util.Map converterMap)
When the parsing step is done, the Node list can be transformed into a
converter chain.
|
Modifier and Type | Class and Description |
---|---|
class |
DateTokenConverter<E>
Returns a date formatted by SimpleDateFormatter.
|
class |
IntegerTokenConverter
When asked to convert an integer,
IntegerTokenConverter the
string value of that integer. |