Package org.formulacompiler.compiler.internal.logging

Examples of org.formulacompiler.compiler.internal.logging.Log


  public static final Log LOG_LETVARS = logFor( "letVars" );
  public static final Log LOG_CONSTEVAL = logFor( "constEval" );

  public static final Log logFor( String _name )
  {
    final Log log = new Log();
    log.setEnabled( "true".equals( System.getProperty( "org.formulacompiler.Settings.LOG." + _name + ".enabled" ) ) );
    return log;
  }
View Full Code Here

TOP

Related Classes of org.formulacompiler.compiler.internal.logging.Log

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.