How do I turn off E_INFO in pocketsphinx?
If you are using the API, this is what I did:
// turn off pocketsphinx output
err_set_logfp(NULL);
err_set_debug_level(0);
The API given by the accepted answer didn't work for me.
Configuration option
-logfn /dev/null
Windows
-logfn nul
turns off logging.
If you are using API you can also use
err_set_logfile(char *filename)