See the Loggifier home page.
This plugin-in defines a new ANT task 'de.unkrig.loggify' which can be used from build scripts executed in the same JRE as the workspace.
action[,action]...=level[:expression]
(eq || eq) && !eq
', where
Pattern character | Matches |
---|---|
* | Any sequence of characters except '/' and '!' |
** | Any sequence of characters except '!' |
*** | Any sequence of characters |
? | Any character except '/' and '!' |
[abc] | 'a', 'b' and 'c' |
[^abc] | Any character except 'a', 'b' and 'c' |
[A-Z] | All characters from 'A' to 'Z' |
any-other-character | That character |
\any-character | That character |
Pattern character | Matches |
---|---|
7 | 7 |
7;9 | 7 and 9 |
7-9 | 7 through 9 |
7- | 7 and up |
-9 | 9 and less |
x;y | x and y (where x and y are integer patterns) |