A couple of days ago the following letter has been delivered to my British postal address. A quick glance to the letter on my way to work pushed me to write this blog post. The so-called “Domain Renewal Group”, sender of the above letter, seems to have a quite interesting business model, in fact. Just, … Continue reading
Tracing Erlang functions for debugging purposes is probably simpler than you could even imagine. Let say you have the following module and you want trace one of its functions. -module(math). -export([sum/2, diff/2]). sum(A, B) -> A + B. diff(A, B) -> A – B. Just start the tracer: > dbg:tracer() Say the tracer that you … Continue reading