EventFilterFactoryWarning Method |
Name | Description | |
---|---|---|
Warning(Regex, String) |
Create a filter for Warning events. Events must match the specified pattern to be filtered.
Examples
Warning(pattern: new Regex("weird.*message"), source: obj) // filter on pattern and source
Remarks Please note that filtering on the source being
null does NOT work (passing null disables the source filter).
| |
Warning(String, String, String, String) |
Create a filter for Warning 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. Examples
Warning() // filter all Warning events
Warning("message") // filter on exactly matching message
Warning(source: obj) // filter on event source
Warning(start: "Expected") // filter on start of message
Warning(contains: "Expected") // filter on part of message
Remarks Please note that filtering on the source being
null does NOT work (passing null disables the source filter).
|