Traced functions which neither crashed nor returned are normally coloured yellow in the trace window. This is not working currently. To reproduce in Elixir you can try the following module:
defmodule TestYellow do
def sloooow ms do
Process.sleep ms
end
end
In the iex shell:
iex(1)> c "testyellow.ex"
iex(2)> TestYellow.sloooow 10_000
Traced functions which neither crashed nor returned are normally coloured yellow in the trace window. This is not working currently. To reproduce in Elixir you can try the following module:
In the iex shell:
Or in Erlang:
erl shell after setting the traces for sloooow and get_all_env:
_get_allenv is traced and shown, but the trace line displaying sloooow is not yellow while the function is executing.