You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also complete modules that are not yet loaded but are in the search path (get inspiration from iex and OTP 23 shell)
Ensure module is loaded (in interactive mode) before starting a new monitor.
Additionally when starting a new monitor, return an error if module:function is not available for tracing for some reason (erlang:trace_pattern/3 returned 0 - either module is not loaded, it does not have such function defined or its a non-traceable bif)
Bonus: restart tracing a function when a module is reloaded (experiment with the on_load MFA value of trace_pattern)
The text was updated successfully, but these errors were encountered:
Also complete modules that are not yet loaded but are in the search path (get inspiration from iex and OTP 23 shell)
Ensure module is loaded (in interactive mode) before starting a new monitor.
Additionally when starting a new monitor, return an error if module:function is not available for tracing for some reason (
erlang:trace_pattern/3
returned0
- either module is not loaded, it does not have such function defined or its a non-traceable bif)Bonus: restart tracing a function when a module is reloaded (experiment with the
on_load
MFA value oftrace_pattern
)The text was updated successfully, but these errors were encountered: