CORDA-2706: Change logging level from warn to info (#4847)

CORDA-2706: Change logging level from warn to info
This commit is contained in:
Katarzyna Streich 2019-03-05 13:15:26 +00:00 committed by Rick Parker
parent f2b21bea5a
commit 8f45340276

View File

@ -453,7 +453,8 @@ class SingleThreadedStateMachineManager(
"unknown session $recipientId, discarding..."
}
} else {
logger.warn("Cannot find flow corresponding to session ID $recipientId.")
// It happens when flows restart and the old sessions messages still arrive from a peer.
logger.info("Cannot find flow corresponding to session ID $recipientId.")
}
} else {
val flow = mutex.locked { flows[flowId] }