I am working on a web application with spring web flow. While I am working on a flow.xml file I have get a decision state on it like this -
<decision-state id="checkPermissin">
<if test="requestParameters.canApprove" then="approve" else="warning" />
</decision-state>
When a request comes to the flow.xml then it get the request parameter canApprove from it and test whether it is true or false. Then it goes to the either of approve or warning state.
My question is - can I log/print the status of canApprove from the flow.xml file?