Kudos to the people who wrote this and it's great for people who use debuggers.
However I'd like to say that I haven't used one in years and don't see any reason to go back.
I've found that there's way simpler practices that have upped my development speed considerably. Simply think about what you're trying to do more carefully, and read over the code until you're sure it's good. It's the fastest way to iterate. Doesn't work? Read and think again.
You can put a format log in there. You can even comment it out, which can be useful later and for other people. It's plain and simple.
When I find myself using log all the time, it's either because I am tired, and I shouldn't be coding any way. Or impatient, which means I'm wasting time and should slow down. Or I have to deal with a library that has a shitty API, which you'll probably want to avoid using any way. And in that case you can use the interactive console to quickly try things out.
Honestly if there's anything I want to get better at it's test driven development. It tells you clearly whether it's working as expected or not.