File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
swan-assist/src/main/java/de/fraunhofer/iem/swan/assist/actions Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,8 @@ public void run(@NotNull ProgressIndicator indicator) {
5252
5353 indicator .setText ("Running SWAN" );
5454 SwanCli swan = new SwanCli ();
55- System . out . println ( "--1--" );
55+
5656 try {
57- System .out .println ("--2--" );
5857 swan .run (options );
5958 } catch (Exception e ) {
6059 throw new RuntimeException (e );
@@ -63,13 +62,13 @@ public void run(@NotNull ProgressIndicator indicator) {
6362 duration = System .currentTimeMillis () - start ;
6463 int m = (int ) (((duration / 1000 ) / 60 ) % 60 );
6564 int s = (int ) ((duration / 1000 ) % 60 );
66- System . out . println ( "--3--" );
65+
6766 indicator .setText ("Exporting SRMs" );
68- System .out .println ("--4--" );
6967 String filename = parameters .get (Constants .OUTPUT_DIRECTORY ) + File .separator + "srm-" + getCurrentTimestamp () + ".json" ;
7068 SrmList srmList = swan .getSwanPipeline ().getModelEvaluator ().getPredictedSrmList ();
69+
7170 try {
72- System . out . println ( "--5--" );
71+
7372 SrmListUtils .exportFile (srmList , filename );
7473 } catch (IOException e ) {
7574 throw new RuntimeException (e );
You can’t perform that action at this time.
0 commit comments