Package org.projectforge.common

Examples of org.projectforge.common.LoggerBridgeLog4j


  private void internalInit(final ConfigurableListableBeanFactory beanFactory, final org.hibernate.cfg.Configuration hibernateConfiguration)
  {
    log.info("Initializing...");
    beanFactory.autowireBeanProperties(this, AutowireCapableBeanFactory.AUTOWIRE_BY_NAME, false);
    // Log4j for ProjectForge modules: common, excel and continuous-db.
    Logger.setLoggerBridge(new LoggerBridgeLog4j());

    // Time zone
    log.info("Default TimeZone is: " + TimeZone.getDefault());
    if ("UTC".equals(TimeZone.getDefault().getID()) == false) {
      for (final String str : UTC_RECOMMENDED) {
View Full Code Here

TOP

Related Classes of org.projectforge.common.LoggerBridgeLog4j

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.