Hi there, is it possible to disable the console output of lines starting in
"INFO"?
I have found some settings in <err.h> which reduce the "ERROR" messages but
can't seem to find the ones relating to INFO. I have set the following in my
code: </err.h>
Hi there, is it possible to disable the console output of lines starting in
"INFO"?
I have found some settings in <err.h> which reduce the "ERROR" messages but
can't seem to find the ones relating to INFO. I have set the following in my
code: </err.h>
err_set_logfp (NULL);
err_set_logfile (NULL);
err_set_debug_level (0);
As I am doing constant speech recognition these messages make it very
difficult to spot other debug messages I am outputting.
Any pointers would be much appreciated.
Dave.
If you are using multhtreaded application you might want to call
in every thread. Otherwise it should work.
Ah perfect! Yes, I was using multiple threads, that solved it.
Thanks a lot nshmyrev.