mirror of
https://github.com/nasa/trick.git
synced 2025-04-16 07:26:48 +00:00
Default to --report when run in batch. Also remove debug message output. (#1862)
This commit is contained in:
parent
eb1837f6f9
commit
3cc4441f6a
@ -38,6 +38,7 @@ public class JobPerf {
|
||||
case "-x" :
|
||||
case "--nogui" : {
|
||||
interactive = false;
|
||||
printReport = true;
|
||||
} break;
|
||||
case "-p" :
|
||||
case "--report" : {
|
||||
@ -72,7 +73,6 @@ public class JobPerf {
|
||||
|
||||
// All files shall be in the same directory as the timeline file.
|
||||
String filesDir = Paths.get(timeLineFileName).toAbsolutePath().getParent().toString();
|
||||
System.out.println( "\n\nFilesDir = " + filesDir + "\n\n");
|
||||
|
||||
// Generate the JobSpecificationMap from information extracted from the S_job_execution
|
||||
// file, that should be in the same directory as the time-line file.
|
||||
|
@ -16,7 +16,6 @@ public class JobSpecificationMap {
|
||||
*/
|
||||
public JobSpecificationMap( File file ) throws IOException, FileNotFoundException {
|
||||
jobSpecMap = new HashMap<String, JobSpecification>();
|
||||
System.out.println( "INSTANCIATING JobSpecificationMap("+ file.toString() +").");
|
||||
BufferedReader in = new BufferedReader( new FileReader( file.toString()) );
|
||||
String line;
|
||||
String field[];
|
||||
|
Loading…
x
Reference in New Issue
Block a user