Package de.hybris.platform.util.logging
Interface HybrisLogFilter
-
- All Known Implementing Classes:
ImpExLogFilter
public interface HybrisLogFilterA log filter is called before a log is logged if it is registered usingHybrisLogger.addFilter(HybrisLogFilter). The filter can modify the log event and even can deny the logging of the event usingHybrisLoggingEvent.deny().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HybrisLoggingEventfilterEvent(HybrisLoggingEvent event)Is called before a log is logged.
-
-
-
Method Detail
-
filterEvent
HybrisLoggingEvent filterEvent(HybrisLoggingEvent event)
Is called before a log is logged. It can modify the event and can deny the logging of the event byHybrisLoggingEvent.deny().- Parameters:
event- the logging event to modify- Returns:
- the modified event
-
-