Let us say I have a module called example.erl

In this module I use the following construct for debugging:

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

It helps me to output various debugging info into the Erlang shell:

?DBG("Function fun1 starting... ~n", [])

But if I call example.erl from example_tests with example:test(), this output info does not appear.

How can I make it visible during a EUnit test?

UPD: I have found some related info, but I still do not know how to solve the issue.

link|improve this question

72% accept rate
feedback

1 Answer

up vote 1 down vote accepted

As describe in the page you mention, you can use debugMsg or debugFmt.

?debugMsg("Function fun1 starting...")

or

?debugFmt("Function fun1 starting...", [])

Make sure you have include eunit's header file in your module file.

-include_lib("eunit/include/eunit.hrl").

If you want to disable debug macros for example in staging, define NODEBUG in compiling modules.

link|improve this answer
?debugFmt works fine! But how can I switch it on/off quickly? I used to use ?DBG defined in two lines (as in my question). I have tried to do the following: -define(dbgFmt(Str,Args), ok)., but the output is still there. – Martin Lee Feb 11 at 13:56
define NODEBUG macro such as -define(NODEBUG, true).. Make sure you define it BEFORE including eunit.hrl, – shino Feb 13 at 0:25
feedback

Your Answer

 
or
required, but never shown

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