We have a service request which never ends and we want to know what it is doing. Logs are not enough.
I there a way to see evm.root content for example, or other things?
Regards
We have a service request which never ends and we want to know what it is doing. Logs are not enough.
I there a way to see evm.root content for example, or other things?
Regards
Do you know the state it gets to in the state machine when it hangs? You could call object_walker in the state before that which will dump $evm.root downwards.
Alternatively if it’s a custom method that you’ve written, you could call
$evm.instantiate('/discover/objectwalker/object_walker')
Somewhere in the script prior to where you suspect the hang might be.
pemcg