ULib.debugFunctionCall - http://ulyssesmod.net/docs/files/lua/ULib/shared/messages-lua.html#debugFunctionCall
Does it show the 'names' of the parameters passed?
Saw this.. http://www.facepunch.com/showthread.php?t=884409
almost blurted out "ULib already does that!"
Then realized it doesn't seem to.
It doesn't poke through the debug table or anything fancy like that, it's just used to help visualize what's passing into a function. It's useful since it's often difficult to tell exactly what values of what type you're passing into a function. A use would be like...
ULib.debugFunctionCall( "myBigComplicatedFunction", myIntArg, myStringArg, myBlahArg ) -- Prints the function name + detailed info about the arguments
myBigComplicatedFunction( myIntArg, myStringArg, myBlahArg )