Hello,
The Javaagent parameter for SCRIPT_OUTPUT_DIR seems wrong. It is defined in Args.java:
- public static final String SCRIPT_OUTPUT_DIR = "scriptdir";
Back in the BTrace 1.x days I believe there where a "scriptdir" that pointed to the directory where the .class script files where located, and a "scriptOutputDir" which pointed to the directory where all of the output would be redirected to.
So I think this could be changed to:
- add a public static final String SCRIPT_DIR = "scriptdir"
- change the SCRIPT_OUTPUT_DIR to be public static final String SCRIPT_OUTPUT_DIR = "scriptOutputDir".