Default to --report when run in batch. Also remove debug message output. (#1862)

This commit is contained in:
jmpenn 2025-03-24 13:36:26 -05:00 committed by GitHub
parent eb1837f6f9
commit 3cc4441f6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -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.

View 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[];