Package | Description |
---|---|
org.apache.camel |
The core Camel API.
|
org.apache.camel.spi |
Service Provider Interfaces used by the Camel runtime which are plugin strategies.
|
Modifier and Type | Method and Description |
---|---|
static LoggingLevel |
LoggingLevel.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoggingLevel[] |
LoggingLevel.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
LoggingLevel.isEnabled(LoggingLevel level)
Is the given logging level equal or higher than the current level.
|
Modifier and Type | Method and Description |
---|---|
LoggingLevel |
CamelLogger.getLevel() |
LoggingLevel |
BeanIntrospection.getLoggingLevel()
Logging level used for logging introspection usage.
|
LoggingLevel |
ShutdownStrategy.getLoggingLevel()
Gets the logging level used for logging shutdown activity (such as starting and stopping routes).
|
LoggingLevel |
RouteController.getLoggingLevel()
Gets the logging level used for logging route activity (such as starting and stopping routes).
|
LoggingLevel |
TypeConverterRegistry.getTypeConverterExistsLoggingLevel()
The logging level to use when logging that a type converter already exists when attempting to add a duplicate
type converter.
|
Modifier and Type | Method and Description |
---|---|
static void |
CamelLogger.log(org.slf4j.Logger log,
LoggingLevel level,
org.slf4j.Marker marker,
String message) |
static void |
CamelLogger.log(org.slf4j.Logger log,
LoggingLevel level,
org.slf4j.Marker marker,
String message,
Throwable th) |
static void |
CamelLogger.log(org.slf4j.Logger log,
LoggingLevel level,
String message) |
static void |
CamelLogger.log(org.slf4j.Logger log,
LoggingLevel level,
String message,
Throwable th) |
void |
CamelLogger.log(String message,
LoggingLevel loggingLevel) |
void |
CamelLogger.log(String message,
Throwable exception,
LoggingLevel loggingLevel) |
void |
CamelLogger.setLevel(LoggingLevel level) |
void |
BeanIntrospection.setLoggingLevel(LoggingLevel loggingLevel)
Logging level used for logging introspection usage.
|
void |
ShutdownStrategy.setLoggingLevel(LoggingLevel loggingLevel)
Sets the logging level used for logging shutdown activity (such as starting and stopping routes).
|
void |
RouteController.setLoggingLevel(LoggingLevel loggingLevel)
Sets the logging level used for logging route activity (such as starting and stopping routes).
|
void |
TypeConverterRegistry.setTypeConverterExistsLoggingLevel(LoggingLevel typeConverterExistsLoggingLevel)
The logging level to use when logging that a type converter already exists when attempting to add a duplicate
type converter.
|
static boolean |
CamelLogger.shouldLog(org.slf4j.Logger log,
LoggingLevel level) |
Constructor and Description |
---|
CamelLogger(org.slf4j.Logger log,
LoggingLevel level) |
CamelLogger(org.slf4j.Logger log,
LoggingLevel level,
String marker) |
CamelLogger(String logName,
LoggingLevel level) |
CamelLogger(String logName,
LoggingLevel level,
String marker) |
Apache Camel