ggml: Reduce log level of "key not found"

Most of the time this is not an error.
This commit is contained in:
Jesse Gross 2025-05-05 10:37:16 -07:00 committed by Jesse Gross
parent b1c40138da
commit 7073600797

View file

@ -149,7 +149,7 @@ func keyValue[T valueTypes | arrayValueTypes](kv KV, key string, defaultValue ..
return val.(T)
}
slog.Warn("key not found", "key", key, "default", defaultValue[0])
slog.Debug("key not found", "key", key, "default", defaultValue[0])
return defaultValue[0]
}