Package org.xmlresolver.logging
Resolver logging.
The resolver logs configuration changes, resolution attempts, caching, and
a variety of other operations. Each of these log messages is sent to the
ResolverLogger
in the configuration.
The DefaultLogger
sends messages to System.err
. The
SystemLogger
uses a logging backend. By default, it configures itself
to use any one of the logging backends supported by LoggerFactory
.
Alternatively, it may be configured directly with a
Logger
.
To switch loggers, set the ResolverFeature.RESOLVER_LOGGER_CLASS
.
-
Interface Summary Interface Description ResolverLogger The resolver logger interface defines the features of a logging class for the resolver. -
Class Summary Class Description AbstractLogger The abstract logger implements some of the core functionality needed regardless of how the messages are processed.DefaultLogger The default logger logs toSystem.err
.SystemLogger The system logger interfaces to a logging backend via a logging backend.