When I write draft and experimental code in Erlang I usually use this:

%%% Switch debugging output on/off:
-define(DBG(Str, Args), ok).
%-define(DBG(Str, Args), io:format(Str, Args)).

Commenting out just one line of code switches the debugging output to the console on and off.

?DBG("DEBUG: The function started ~n", [])

Thus I can use commenting in the code heavily.

Does something similar exist in Ruby?

link|improve this question

72% accept rate
1  
Setting Logger.level doesn't work for you? rubydoc.info/stdlib/logger/1.9.2/Logger:level – Mladen Jablanović Dec 27 '11 at 19:10
feedback

1 Answer

up vote 3 down vote accepted

Ruby Learning's section on logging might be helpful.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.