Package lev.debug

Examples of lev.debug.LDebug


   */
  BLOCKED;
    }

    public void logMod(Mod srcMod, String header, String ... data) {
  LDebug log = modImports.get(srcMod);
  if (log == null) {
      log = new LDebug(debugPath + "Mod Import/" + modNum++ + " - " + srcMod.getName() + ".txt", 40);
      modImports.put(srcMod, log);
  }
  log.w(header, data);
    }
View Full Code Here

TOP

Related Classes of lev.debug.LDebug

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.