|
From: Christian S. <sch...@li...> - 2014-04-13 12:51:28
|
On Sunday 13 April 2014 14:38:17 Stjepan Horvat wrote:
> is there a way to see what did sampler recive before it has send its data
> for loading....?
Sure! Recompile the server with increased debug level:
./configure --enable-debug-level=2
make
Debug level 2 like suggested, should be enough for this. Then run the sampler
(no need to install it):
src/linuxsampler
Then it should show a debug message for every LSCP command recognized by the
LSCP server (see src/network/lscpserver.cpp).
In the sampler's source code you see debug messages are placed like this:
dmsg(2,("This is some value to debug: %d\n", value));
The number in front indicates the minimum debug level for the debug message to
be printed to the console.
CU
Christian
|