public class LoggingHandler extends AbstractMessageHandler
Modifier and Type | Class and Description |
---|---|
static class |
LoggingHandler.Level |
EXPRESSION_PARSER, logger
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
Constructor and Description |
---|
LoggingHandler(LoggingHandler.Level level)
Create a
LoggingHandler with the given log LoggingHandler.Level . |
LoggingHandler(String level)
Create a LoggingHandler with the given log level (case-insensitive).
|
Modifier and Type | Method and Description |
---|---|
String |
getComponentType()
Subclasses may implement this method to provide component type information.
|
LoggingHandler.Level |
getLevel() |
protected void |
handleMessageInternal(Message<?> message) |
protected void |
onInit()
Subclasses may implement this for initialization logic.
|
void |
setExpression(String expressionString)
Deprecated.
in favor of
setLogExpressionString(String) |
void |
setLevel(LoggingHandler.Level level)
Set the logging
LoggingHandler.Level to change the behavior at runtime. |
void |
setLogExpression(Expression expression)
Set an
Expression to evaluate a log entry at runtime against the request Message . |
void |
setLogExpressionString(String expressionString)
Set a SpEL expression string to use.
|
void |
setLoggerName(String loggerName) |
void |
setShouldLogFullMessage(boolean shouldLogFullMessage)
Specify whether to log the full Message.
|
configureMetrics, getActiveCount, getActiveCountLong, getDuration, getErrorCount, getErrorCountLong, getHandleCount, getHandleCountLong, getManagedName, getManagedType, getMaxDuration, getMeanDuration, getMinDuration, getOrder, getStandardDeviationDuration, handleMessage, isCountsEnabled, isLoggingEnabled, isStatsEnabled, reset, setCountsEnabled, setLoggingEnabled, setManagedName, setManagedType, setOrder, setShouldTrack, setStatsEnabled
afterPropertiesSet, extractTypeIfPossible, getApplicationContext, getApplicationContextId, getBeanFactory, getChannelResolver, getComponentName, getConversionService, getExpression, getIntegrationProperties, getIntegrationProperty, getMessageBuilderFactory, getTaskScheduler, setApplicationContext, setBeanFactory, setBeanName, setChannelResolver, setComponentName, setConversionService, setMessageBuilderFactory, setPrimaryExpression, setTaskScheduler, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getComponentName
public LoggingHandler(String level)
The valid levels are: FATAL, ERROR, WARN, INFO, DEBUG, or TRACE
level
- The level.LoggingHandler(Level)
public LoggingHandler(LoggingHandler.Level level)
LoggingHandler
with the given log LoggingHandler.Level
.level
- the LoggingHandler.Level
to use.@Deprecated public void setExpression(String expressionString)
setLogExpressionString(String)
expressionString
- the SpEL expression string to use.public void setLogExpressionString(String expressionString)
expressionString
- the SpEL expression string to use.setLogExpression(Expression)
public void setLogExpression(Expression expression)
Expression
to evaluate a log entry at runtime against the request Message
.expression
- the Expression
to use.setLogExpressionString(String)
public LoggingHandler.Level getLevel()
LoggingHandler.Level
.public void setLevel(LoggingHandler.Level level)
LoggingHandler.Level
to change the behavior at runtime.level
- the level.public void setLoggerName(String loggerName)
public void setShouldLogFullMessage(boolean shouldLogFullMessage)
false
by default.shouldLogFullMessage
- true if the complete message should be logged.public String getComponentType()
IntegrationObjectSupport
getComponentType
in interface NamedComponent
getComponentType
in class AbstractMessageHandler
protected void onInit() throws Exception
IntegrationObjectSupport
onInit
in class AbstractMessageHandler
Exception
- Any exception.protected void handleMessageInternal(Message<?> message) throws Exception
handleMessageInternal
in class AbstractMessageHandler
Exception