Changeset 2989
- Timestamp:
- 08/25/10 16:26:19
- Files:
-
- trunk/build/quickstart/linux/startjboss (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/quickstart/linux/startjboss
r2983 r2989 11 11 usage() { 12 12 echo " $PRG [-heap size] [-newsize size] [-permgen size] [-debug]" 13 echo " [-debug modulename] [-activemquri uri]"13 echo " [-debugexprfilters name] [-activemquri uri]" 14 14 echo "" 15 15 echo " Where:" … … 31 31 echo " -debug sets the logging level to DEBUG" 32 32 echo "" 33 echo " -debugmodule sets the logging level for module name to DEBUG" 34 echo " This sets a system variable org.bedework.loglevel.<name> which" 35 echo " may be referenced by the log4j configuration" 33 echo " -debugexprfilters sets the logging level for bedework expression filters to DEBUG" 36 34 echo "" 37 35 echo " -activemquri sets the uri used by the activemq broker for bedework" … … 55 53 activemquri="vm://localhost" 56 54 55 exprfilters=INFO 56 57 57 # =================== End defaults =============================== 58 58 59 59 LOG_THRESHOLD="-Djboss.server.log.threshold=INFO" 60 LOG_LEVELS=""61 60 62 61 while [ "$1" != "" ] … … 88 87 LOG_THRESHOLD="-Djboss.server.log.threshold=DEBUG" 89 88 ;; 90 -debug module)89 -debugexprfilters) 91 90 shift 92 LOG_LEVELS="$LOG_LEVELS -Dorg.bedework.loglevel.$1=DEBUG"91 exprfilters=DEBUG 93 92 shift 94 93 ;; … … 119 118 JBOSS_BIND="-b 0.0.0.0" 120 119 120 LOG_LEVELS="-Dorg.bedework.loglevel.exprfilters=$exprfilters" 121 121 122 # 122 123 # Port shifting
