// TODO: process - null- normal run, "" - playback latest log, or timestamp - play selected log file(s)
StringplayBackStamp=runConfig.getPlayBackStamp();
...
...
@@ -128,7 +128,7 @@ public class VDTConsoleRunner{
}
}
runner.log("Writing to console "+iCons.getName()+":",arguments,null,false,true);// Appears in the console of the target Eclipse (may be immediately erased)
runner.log("Writing to console "+iCons.getName()+":",arguments,null,false,false);// Appears in the console of the parent Eclipse
if(debugPrint)runner.log("Writing to console "+iCons.getName()+":",arguments,null,false,false);// Appears in the console of the parent Eclipse
@@ -161,7 +161,7 @@ public class VDTProgramRunner {
}
String[]controlFiles=runConfig.getControlFiles();
runner.log(null,cmdLine,controlFiles,false,true);/* Appears in the console of the target Eclipse (immediately erased) */
runner.log(null,cmdLine,controlFiles,false,false);/* Appears in the console of the parent Eclipse */
if(VerilogPlugin.getPreferenceBoolean(PreferenceStrings.DEBUG_LAUNCHING))runner.log(null,cmdLine,controlFiles,false,false);/* Appears in the console of the parent Eclipse */
if(debugPrint)System.out.println("Skipping program runner as playback is not implemented, arguments were "+argumentsItemsArray[numItem].getNameAsParser());