Log GGML abort function calls at debug level

This commit is contained in:
Tabby Cromarty
2025-10-27 19:03:00 +00:00
parent 0f77a8f07c
commit 5c212e89cd

View File

@@ -28,7 +28,7 @@
bool whisper_abort_callback(void *data)
{
// Seems like data is usually a string?
obs_log(LOG_ERROR, "Error in GGML processing - %s", (char *)(data));
obs_log(LOG_DEBUG, "Error in GGML processing - %s", (char *)(data));
return false;
}