CORDA-2689 Remove annoying ProgressTracker warning. (#4970)

This commit is contained in:
Tudor Malene 2019-04-01 17:20:39 +01:00 committed by Shams Asari
parent e0f19ca70b
commit 24f63b2e64

View File

@ -468,7 +468,7 @@ abstract class FlowLogic<out T> {
val theirs = subLogic.progressTracker
if (ours != null && theirs != null && ours != theirs) {
if (ours.currentStep == ProgressTracker.UNSTARTED) {
logger.warn("ProgressTracker has not been started")
logger.debug { "Initializing the progress tracker for flow: ${this::class.java.name}." }
ours.nextStep()
}
ours.setChildProgressTracker(ours.currentStep, theirs)