whisper.cpp/bindings/go/pkg/whisper/log.go

10 lines
256 B
Go

package whisper
import low "github.com/ggerganov/whisper.cpp/bindings/go"
// DisableLogs disables all C-side logging from whisper.cpp and ggml.
// Call once early in your program before creating models/contexts.
func DisableLogs() {
low.DisableLogs()
}