From 24f63b2e6420a8a59ed776afa2fad7305d47c72c Mon Sep 17 00:00:00 2001 From: Tudor Malene Date: Mon, 1 Apr 2019 17:20:39 +0100 Subject: [PATCH] CORDA-2689 Remove annoying ProgressTracker warning. (#4970) --- core/src/main/kotlin/net/corda/core/flows/FlowLogic.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/kotlin/net/corda/core/flows/FlowLogic.kt b/core/src/main/kotlin/net/corda/core/flows/FlowLogic.kt index 13a18e482d..bca4a37b5c 100644 --- a/core/src/main/kotlin/net/corda/core/flows/FlowLogic.kt +++ b/core/src/main/kotlin/net/corda/core/flows/FlowLogic.kt @@ -468,7 +468,7 @@ abstract class FlowLogic { 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)