for future debugging in here

This commit is contained in:
Andy Clement
2014-04-09 13:13:30 -07:00
parent 5279658db3
commit d1942dc498

View File

@@ -92,7 +92,9 @@ public class ReloadingJVM {
System.out.println("java.home="+System.getProperty("java.home"));
}
process = Runtime.getRuntime().exec(
System.getProperty("java.home")+"/bin/java -noverify -javaagent:" + agentJarLocation + " -cp " + javaclasspath + " " + AGENT_OPTION_STRING +
// "/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home"+
System.getProperty("java.home")+
"/bin/java -noverify -javaagent:" + agentJarLocation + " -cp " + javaclasspath + " " + AGENT_OPTION_STRING +
" "+OPTS+" "
+ ReloadingJVMCommandProcess.class.getName(), new String[] { OPTS });
writer = new DataOutputStream(process.getOutputStream());