Interface ILogFilter
Represents a filter that determines which log entries are included or excluded.
Namespace: Umbraco.Cms.Core.Logging.Viewer
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface ILogFilter
Methods
View SourceTakeLogEvent(LogEvent)
Determines whether the specified log event should be taken (accepted) by the filter.
Declaration
bool TakeLogEvent(LogEvent e)
Parameters
| Type | Name | Description |
|---|---|---|
| LogEvent | e | The log event to evaluate. |
Returns
| Type | Description |
|---|---|
| bool |
|