Package de.hybris.platform.util.logging
Interface HybrisLogFilter
- All Known Implementing Classes:
ImpExLogFilter
public interface HybrisLogFilter
A log filter is called before a log is logged if it is registered using
HybrisLogger.addFilter(HybrisLogFilter). The filter can modify the log event and even can deny the logging of
the event using HybrisLoggingEvent.deny().-
Method Summary
Modifier and TypeMethodDescriptionfilterEvent(HybrisLoggingEvent event) Is called before a log is logged.
-
Method Details
-
filterEvent
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
-