Closed pprobst closed 6 months ago
How about doing something similar to how we disable WHISPER_LOG_DEBUG
?
#if defined(WHISPER_LOG)
#define WHISPER_LOG_INFO(...) whisper_log_internal(GGML_LOG_LEVEL_INFO , __VA_ARGS__)
#else
#define WHISPER_LOG_INFO(...)
#endif
True. I did not notice that. It can be done. Thanks.
Hello.
As far as I know, there's no option to disable the logging done with
WHISPER_LOG_INFO
, present inwhisper.cpp
. This is a bit troublesome when debugging, as I need to comment all theWHISPER_LOG_INFO
.Is there an option to (cleanly) disable logging that I'm not aware of? If there is not, is it possible to request this feature? Thanks.