I can write a "User tracking Log using the following Pseudo Code:
WriteLogFIle( “MethodsUsed.log”,currentmethodname)
What I am struggling to come up with as a way to see the values of the (intrinsic type of) parameters passed in.
Is there some way, using introspection to get the parameters back in code?
WriteLogFIle( “MethodsUsed.log”,currentmethodname, myParamters())
?