Package org.apache.tomcat.util.qlog

Examples of org.apache.tomcat.util.qlog.LogDaemon.start()


  LogDaemon logDaemon=(LogDaemon)cm.getNote("tc.LogDaemon");
  if( logDaemon==null ) {
      logDaemon=new LogDaemon();
      cm.setNote( "tc.LogDaemon", logDaemon );
      logDaemon.start();
  }
 
  if( name==null ) {
      if( servletLogger )
    name="org/apache/tomcat/facade";
View Full Code Here


    public void engineInit( ContextManager cm )
  throws TomcatException
    {
  // make sure it's started
  LogDaemon logDaemon=(LogDaemon)cm.getNote("tc.LogDaemon");
  logDaemon.start();
    }

    public void engineShutdown(ContextManager cm)
  throws TomcatException
    {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.