You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/05/03 17:47:43 UTC

svn commit: r1333514 - /subversion/trunk/subversion/tests/cmdline/svntest/main.py

Author: stsp
Date: Thu May  3 15:47:43 2012
New Revision: 1333514

URL: http://svn.apache.org/viewvc?rev=1333514&view=rev
Log:
* subversion/tests/cmdline/svntest/main.py
  (_create_parser): Document available levels for --set-log-level.

Modified:
    subversion/trunk/subversion/tests/cmdline/svntest/main.py

Modified: subversion/trunk/subversion/tests/cmdline/svntest/main.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/main.py?rev=1333514&r1=1333513&r2=1333514&view=diff
==============================================================================
--- subversion/trunk/subversion/tests/cmdline/svntest/main.py (original)
+++ subversion/trunk/subversion/tests/cmdline/svntest/main.py Thu May  3 15:47:43 2012
@@ -1556,7 +1556,9 @@ def _create_parser():
                     help="Configuration file for tests.")
   parser.add_option('--set-log-level', action='callback', type='str',
                     callback=set_log_level,
-		    help="Set log level (numerically or symbolically)")
+                    help="Set log level (numerically or symbolically). " +
+                         "Symbolic levels are: CRITICAL, ERROR, WARNING, " +
+                         "INFO, DEBUG")
   parser.add_option('--keep-local-tmp', action='store_true',
                     help="Don't remove svn-test-work/local_tmp after test " +
                          "run is complete.  Useful for debugging failures.")