Examples of StackTraceHolder


Examples of org.projectforge.debug.StackTraceHolder

  {
    log.info("Initializing task tree ...");
    if (taskDao == null) {
      log.info("Can't initialize task tree, taskDao isn't set yet (shouldn't occur):");
      // Stack trace for debugging refresh() call without TaskDao (does only occur in productive mode):
      final StackTraceHolder sth = new StackTraceHolder();
      log.info(sth);
      return;
    }
    TaskNode newRoot = null;
    taskMap = new HashMap<Integer, TaskNode>();
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.