![]() | EventFilterFactoryDebug Method |
Name | Description | |
---|---|---|
![]() ![]() | Debug(Regex, String) |
Create a filter for Debug events. Events must match the specified pattern to be filtered.
![]()
Debug(pattern: new Regex("weird.*message"), source: obj) // filter on pattern and source
![]() Please note that filtering on the source being
null does NOT work (passing null disables the source filter).
|
![]() ![]() | Debug(String, String, String, String) |
Create a filter for Debug events.
message takes priority over start. If message!=null the event must match it to be filtered. If start!=null and message has not been specified, the event must start with the given string to be filtered. If contains!=null and both message and start have not been specified, the event must contain the given string to be filtered. ![]()
Debug() // filter all Debug events
Debug("message") // filter on exactly matching message
Debug(source: obj) // filter on event source
Debug(start: "Expected") // filter on start of message
Debug(contains: "Expected") // filter on part of message
![]() Please note that filtering on the source being
null does NOT work (passing null disables the source filter).
|