Uses of Interface
org.apache.uima.util.Logger
Package
Description
Apache UIMA
The Analysis Engine interface, along with supporting interfaces and exception classes.
The Annotator Interfaces, along with supporting interfaces and exception classes.
Apache UIMA internals
Interfaces for
Resources
and ResourceSpecifiers
.Utility classes and interfaces used by UIMA components.
-
Uses of Logger in org.apache.uima
Modifier and TypeMethodDescriptionprotected abstract Logger
UIMAFramework._getLogger()
To be implemented by subclasses; this should return a reference to the default UIMALogger
used by this implementation.protected abstract Logger
UIMAFramework._getLogger
(Class<?> component) To be implemented by subclasses; this should return a reference to the UIMALogger
of the specified source class.protected abstract Logger
UIMAFramework._newLogger()
To be implemented by subclasses; this should return a new UIMALogger
instance.UimaContext.getLogger()
Gets theLogger
to which log output will be sent.static Logger
UIMAFramework.getLogger()
Gets theLogger
used by the UIMA framework.static Logger
Gets theLogger
used by a particular Class, for example an Annotator.static Logger
UIMAFramework.newLogger()
Creates a newLogger
, which can be passed for example to theAnalysisEngine.setLogger(Logger)
method in order to have separate Analysis Engine instances used separate loggers.Modifier and TypeMethodDescriptiondefault void
UimaContextAdmin.initializeRoot
(Logger aLogger) Initializes a root UimaContext.void
UimaContextAdmin.initializeRoot
(Logger aLogger, ResourceManager aResourceManager, ConfigurationManager aConfigurationManager) Deprecated.static UimaContextAdmin
UIMAFramework.newUimaContext
(Logger aLogger, ResourceManager aResourceManager, ConfigurationManager aConfigManager) Deprecated.UseUIMAFramework.newUimaContext()
orUIMAFramework.uimaContextBuilder()
instead.void
Sets the Logger for this UimaContext.UimaContextAdminBuilder.withLogger
(Logger aLogger) -
Uses of Logger in org.apache.uima.analysis_component
-
Uses of Logger in org.apache.uima.analysis_engine
Modifier and TypeMethodDescriptionAnalysisEngine.getLogger()
Gets the Logger that this Analysis Engine is currently using. -
Uses of Logger in org.apache.uima.analysis_engine.annotator
-
Uses of Logger in org.apache.uima.analysis_engine.impl
-
Uses of Logger in org.apache.uima.flow
-
Uses of Logger in org.apache.uima.impl
Modifier and TypeMethodDescriptionprotected Logger
UIMAFramework_impl._getLogger()
To be implemented by subclasses; this should return a reference to the UIMALogger
used by this implementation.protected Logger
UIMAFramework_impl._getLogger
(Class component) To be implemented by subclasses; this should return a reference to the UIMALogger
of the specified source class.protected Logger
UIMAFramework_impl._newLogger()
ChildUimaContext_impl.getLogger()
RootUimaContext_impl.getLogger()
protected Logger
UimaContext_ImplBase.maybeThrottleLogger
(Logger logger) Modifier and TypeMethodDescriptionvoid
ChildUimaContext_impl.initializeRoot
(Logger aLogger, ResourceManager aResourceManager, ConfigurationManager aConfigurationManager) void
RootUimaContext_impl.initializeRoot
(Logger aLogger, ResourceManager aResourceManager, ConfigurationManager aConfigurationManager) protected Logger
UimaContext_ImplBase.maybeThrottleLogger
(Logger logger) void
void
-
Uses of Logger in org.apache.uima.internal.util
Modifier and TypeMethodDescriptionstatic void
Misc.decreasingWithTrace
(AtomicInteger errorCount, String message, Logger logger) Issues message at warning or fine level (fine if enabled, includes stack trace)void
Sets logger for all AnalysisEngines in pool. -
Uses of Logger in org.apache.uima.resource
-
Uses of Logger in org.apache.uima.util
Modifier and TypeMethodDescriptionstatic void
MessageReport.decreasingWithTrace
(AtomicInteger errorCount, String message, Logger logger) Issues message at warning or fine level (fine if enabled, includes stack trace) -
Uses of Logger in org.apache.uima.util.impl
Modifier and TypeClassDescriptionclass
UIMA Logging interface implementation for Java Logging Toolkit JSR-47 (JDK 1.4) JUL Ignores Markers and MDC (not supported in the JUL)class
UIMA Logging interface implementation for Log4j This version is for Log4j version 2, from Apache Built using version 2.8class
UIMA Logging interface common implementation Specific loggers extend this classclass
UIMA Logging interface implementation without using an logging toolkit Logger names are not used The call getInstance() returns a common shared instance.class
UIMA Logging interface implementation for SLF4j This design gets a logger in static initialization, in order to see what the back end is.Modifier and TypeMethodDescriptionstatic Logger
JSR47Logger_impl.getInstance
(Class<?> component) Creates a new JSR47Logger instance for the specified source classstatic Logger
JSR47Logger_impl.getInstance
(JSR47Logger_impl l, int limit) static Logger
Log4jLogger_impl.getInstance()
Creates a new Log4jLogger instance with the default Log4j framework loggerstatic Logger
Log4jLogger_impl.getInstance
(Class<?> component) Creates a new Log4jLogger instance for the specified source classstatic Logger
Logger_impl.getInstance()
creates a new Logger instance for the specified source classstatic Logger
Logger_impl.getInstance
(Class<?> component) creates a new Logger instance for the specified source classstatic Logger
Slf4jLogger_impl.getInstance()
creates a new Logger instance using default name "org.apache.uima"static Logger
Slf4jLogger_impl.getInstance
(Class<?> component) creates a new Logger instance for the specified source class
UimaContextAdmin.initializeRoot(Logger)
instead.