sdeboy 2004/04/13 00:24:43 Modified: src/java/org/apache/log4j/chainsaw/help tutorial.html Log: corrected expression examples Revision Changes Path 1.6 +2 -2 logging-log4j/src/java/org/apache/log4j/chainsaw/help/tutorial.html Index: tutorial.html =================================================================== RCS file: /home/cvs/logging-log4j/src/java/org/apache/log4j/chainsaw/help/tutorial.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- tutorial.html 13 Apr 2004 07:13:42 -0000 1.5 +++ tutorial.html 13 Apr 2004 07:24:43 -0000 1.6 @@ -200,11 +200,11 @@ </ul> <p><B>Example expressions:</B></p> <table border = 1> -<tr><td>To display all events with a level of info or greater</td><td><b>LEVEL > INFO</b></td></tr> +<tr><td>To display all events with a level of info or greater</td><td><b>LEVEL >= INFO</b></td></tr> <tr><td>To display all events associated with the words 'logged in' in the message</td><td> <b>MSG ~= 'logged in'</b></td></tr> <tr><td>To display all events which contain an exception</td><td><b>EXCEPTION EXISTS</b></td></tr> <tr><td>To display all events associated with an MDC key of USERID with a value of 'tester'</td><td><b>MDC.USERID == tester</b></td></tr> -<tr><td>'and' the first and second examples together, 'or'd with the third</td><td><b>( LEVEL > INFO && MSG ~= 'logged in' ) || EXCEPTION EXISTS</b></td></tr> +<tr><td>'and' the first and second examples together, 'or'd with the third</td><td><b>( LEVEL >= INFO && MSG ~= 'logged in' ) || EXCEPTION EXISTS</b></td></tr> </table> <h2>Shutting down the Tutorial</h2>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
