The dbg tag has no wiki summary.
3
votes
1answer
85 views
Avoiding output of huge binary params when tracing with dbg
I have to debug some code that passes around huge binaries in the params.
For this I want to use a combination of dbg:tracer/0, dbg:p/2, dbg:tpl/3.
But if I do this all the binaries are output every ...
0
votes
1answer
39 views
EUnit output debug info from tested modules
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), ...
0
votes
1answer
13 views
How to debug .so on aix which is invoked from java
I have plane C code which after built gives .so file on AIX, and this .so file is invokes from Java, so how can I debug .so file?
cheers
Bala
0
votes
1answer
64 views
Ruby debug output - switch on/off easily
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 ...
0
votes
0answers
86 views
Unable to configure Notepad++ DBGP plugin. Xdebug already installed
I have installed xdebug on php but now I can't make the notepad++ DBGp plugin work.
I have wamp latest version on Windows7 with the wwww folder on partition: d:\www.
I wrote a php file:
<?php
...