Skip to content

Commit f52bf4e

Browse files
committed
Add log for when ROM isn't defaulted.
1 parent e2a6977 commit f52bf4e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

edu.cuny.hunter.streamrefactoring.core/src/edu/cuny/hunter/streamrefactoring/core/analysis/StreamStateMachine.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,9 @@ private void discoverIfReduceOrderingPossiblyMatters(EclipseProjectAnalysisEngin
576576
+ " but cannot find possible return types for node: " + block.getNode()
577577
+ " and return value: " + returnValue + ". Defaulting ROM to: " + rom + " for block: "
578578
+ block + ".");
579-
}
579+
} else
580+
LOGGER.info("While determining ROM, found number of possible return types: "
581+
+ possibleReturnTypes.size());
580582

581583
LOGGER.fine("Possible reduce types are: " + possibleReturnTypes);
582584
} else

0 commit comments

Comments
 (0)