$ java -Dlog.functions.exclude=".*toString"
... |
This will log all events other than those generated from the "toString()"
function of any class. |
$ java -Dlog.functions.exclude=".*MyClass\.func"
... |
This will log all events other than those generated from the func()
function of class MyClass. |
$ java -Dlog.functions.exclude=".*MyClass\.func
.*toString" ... |
This combines the effect of the previous two examples and logs all
events other than those produced from the toString() and the func() method
from MyClass. |