Skip to content

Commit a1395e3

Browse files
improve debug
1 parent 21327cb commit a1395e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/net/preibisch/bigstitcher/spark/SparkInterestPointDetection.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,11 @@ public Void call() throws Exception
601601
{
602602
final int oldSize = tuple._2().size();
603603
filterPoints( tuple._2(), tuple._3(), myMaxSpots );
604-
System.out.println( "Filtered interval " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + oldSize + " >>> " + tuple._2().size() );
604+
System.out.println( "Filtered interval (limit=" + myMaxSpots + ") " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + oldSize + " >>> " + tuple._2().size() );
605+
}
606+
else
607+
{
608+
System.out.println( "NOT filtered interval (limit=" + myMaxSpots + ") " + Util.printInterval( tuple._1() ) + " (" + Group.pvid( viewId ) + "): " + tuple._2().size() );
605609
}
606610

607611
interestPointsPerViewId.get( viewId ).add( tuple._2() );

0 commit comments

Comments
 (0)