diff --git a/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/support/AbstractConversationFlowExecutionRepository.java b/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/support/AbstractConversationFlowExecutionRepository.java index c456be19..7a4dd6fa 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/support/AbstractConversationFlowExecutionRepository.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/execution/repository/support/AbstractConversationFlowExecutionRepository.java @@ -118,10 +118,6 @@ public abstract class AbstractConversationFlowExecutionRepository extends Abstra } public FlowExecutionLock getLock(FlowExecutionKey key) throws FlowExecutionRepositoryException { - if (logger.isDebugEnabled()) { - logger.debug("Getting lock for flow execution with key '" + key + "'"); - } - // lock the entire conversation return new ConversationBackedFlowExecutionLock(getConversation(key)); }