Author: markt
Date: Mon Sep 28 20:45:08 2015
New Revision: 1705771

URL: http://svn.apache.org/viewvc?rev=1705771&view=rev
Log:
No need for LogManager when using stop. Can't use the Tomcat config anyway 
since that would resut in two processes trying to write to the same file. This 
was also causing an ugly stack trace on stop with Java 9 as it tried to find a 
logging configuration to use.

Modified:
    tomcat/trunk/bin/catalina.sh

Modified: tomcat/trunk/bin/catalina.sh
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/bin/catalina.sh?rev=1705771&r1=1705770&r2=1705771&view=diff
==============================================================================
--- tomcat/trunk/bin/catalina.sh (original)
+++ tomcat/trunk/bin/catalina.sh Mon Sep 28 20:45:08 2015
@@ -443,7 +443,7 @@ elif [ "$1" = "stop" ] ; then
     fi
   fi
 
-  eval "\"$_RUNJAVA\"" $LOGGING_MANAGER $JAVA_OPTS \
+  eval "\"$_RUNJAVA\"" $JAVA_OPTS \
     -classpath "\"$CLASSPATH\"" \
     -Dcatalina.base="\"$CATALINA_BASE\"" \
     -Dcatalina.home="\"$CATALINA_HOME\"" \



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to