Hi,<br><br>I would like to write a separate module, which would catch/indicate, when some functions are executed in other modules.<br><br>For example,<br><br>otp/gen_server<br><br>handle_call(new_msg,...)            %% do not catch this line<br>
<br>handle_call(....) ->                       %% catch this line i.e. when all above conditions doesn't match.<br><br>Which debug tool would be best for my needs?<br>Also would like to include some timing measurements, later on.<br>
<br>Nick.<br><br>