Package org.dbwiki.web.log

Examples of org.dbwiki.web.log.StandardOutServerLog


   */
  protected void initServerLog(String serverLogValue) {
   
    if (serverLogValue != null) {
      if (serverLogValue.equalsIgnoreCase(propertyLogFileValueSTDOUT)) {
        _serverLog = new StandardOutServerLog();
      } else {
        _serverLog = new FileServerLog(new File(serverLogValue));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.dbwiki.web.log.StandardOutServerLog

Copyright © 2018 www.massapicom. 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.