Elixir Streams |> Debugging tip! One quick way to find out which functions you're executing
Want to know which functions are being executed during tests?
I’d typically write custom dbg statements. But I always wanted a way to print the function’s name without me having to know it.
Turns out, there’s an easy way thanks to the __ENV__
macro! 🥳
👉 Elixir Streams |> Debugging tip! One quick way to find out which functions you’re executing
Read next Borrowing libs from Python in Elixir