// only store traces if it's not a daemon process
if (!isDaemon()) {
// now process the output and erroutput streams of this process by starting two threads
// which monitor these streams
stderr = new ReaderThread("StdErr",getProcess().getErrorStream(),showOutput, test.getStdErrFileName());
debugMsg("Starting errout thread",out,5);
stderr.start();
stdin = new ReaderThread("StdOutput",getProcess().getInputStream(),showOutput, test.getStdOutFileName());
debugMsg("Starting stdout thread",out,5);
stdin.start();
}
debugMsg("Process started at :"+(new Date()).toString(),out,1);
}