Index
All Classes and Interfaces|All Packages
A
D
- debug(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
DEBUG
level. - debug(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
DEBUG
level. - debug(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
DEBUG
level. - debug(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- debug(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- DEBUG - Enum constant in enum class org.elasticsearch.logging.Level
-
A general debugging event.
E
- error(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
ERROR
level. - error(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
ERROR
level. - error(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
ERROR
level. - error(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- error(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- ERROR - Enum constant in enum class org.elasticsearch.logging.Level
-
An error in the application, possibly recoverable.
F
- fatal(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
FATAL
level. - fatal(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
FATAL
level. - fatal(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
FATAL
level. - fatal(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- fatal(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- FATAL - Enum constant in enum class org.elasticsearch.logging.Level
-
A fatal error that will prevent the application from continuing.
G
- getLogger(Class<?>) - Method in class org.elasticsearch.logging.internal.spi.LoggerFactory
- getLogger(Class<?>) - Static method in class org.elasticsearch.logging.LogManager
-
Returns a Logger using the fully qualified name of the Class as the Logger name.
- getLogger(String) - Method in class org.elasticsearch.logging.internal.spi.LoggerFactory
- getLogger(String) - Static method in class org.elasticsearch.logging.LogManager
-
Returns a Logger with the specified name.
- getName() - Method in interface org.elasticsearch.logging.Logger
-
Gets the logger name.
- getRootLevel() - Method in class org.elasticsearch.logging.internal.spi.LoggerFactory
I
- info(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
INFO
level. - info(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
INFO
level. - info(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
INFO
level. - info(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- info(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- INFO - Enum constant in enum class org.elasticsearch.logging.Level
-
An event for informational purposes.
- isDebugEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
DEBUG
Level. - isEnabled(Level) - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the given Level.
- isErrorEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
ERROR
Level. - isFatalEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
FATAL
Level. - isInfoEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
INFO
Level. - isTraceEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
TRACE
Level. - isWarnEnabled() - Method in interface org.elasticsearch.logging.Logger
-
Checks whether this Logger is enabled for the
WARN
Level.
L
- Level - Enum Class in org.elasticsearch.logging
-
Levels used for identifying the severity of an event and filtering the logging output.
- log(Level, String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message String with the given level.
- log(Level, Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- Logger - Interface in org.elasticsearch.logging
-
Main interface for logging.
- LoggerFactory - Class in org.elasticsearch.logging.internal.spi
-
A factory used by LogManager to create loggers.
- LoggerFactory() - Constructor for class org.elasticsearch.logging.internal.spi.LoggerFactory
- LogManager - Class in org.elasticsearch.logging
-
A Manager of
Loggers
.
O
- OFF - Enum constant in enum class org.elasticsearch.logging.Level
-
No events will be logged.
- org.elasticsearch.logging - module org.elasticsearch.logging
- org.elasticsearch.logging - package org.elasticsearch.logging
-
Public Elasticsearch Logging API, exposes interfaces and classes for most common logging use cases.
- org.elasticsearch.logging.internal.spi - package org.elasticsearch.logging.internal.spi
P
- provider() - Static method in class org.elasticsearch.logging.internal.spi.LoggerFactory
S
- setInstance(LoggerFactory) - Static method in class org.elasticsearch.logging.internal.spi.LoggerFactory
- setRootLevel(Level) - Method in class org.elasticsearch.logging.internal.spi.LoggerFactory
T
- trace(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
TRACE
level. - trace(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
TRACE
level. - trace(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
TRACE
level. - trace(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- trace(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- TRACE - Enum constant in enum class org.elasticsearch.logging.Level
-
A fine-grained debug message, typically capturing the flow through the application.
V
- valueOf(String) - Static method in enum class org.elasticsearch.logging.Level
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class org.elasticsearch.logging.Level
-
Returns an array containing the constants of this enum class, in the order they are declared.
W
- warn(String) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
WARN
level. - warn(String, Object...) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message with parameters at the
WARN
level. - warn(String, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a message at the
WARN
level. - warn(Supplier<String>) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message.
- warn(Supplier<String>, Throwable) - Method in interface org.elasticsearch.logging.Logger
-
Logs a lazily supplied String message associated with a given throwable.
- WARN - Enum constant in enum class org.elasticsearch.logging.Level
-
An event that might lead to an error.
All Classes and Interfaces|All Packages