Browse Source

ggml: Reduce log level of "key not found"

Most of the time this is not an error.
jmorganca/cuda-compression-none
Jesse Gross 1 year ago
committed by Jesse Gross
parent
commit
7073600797
  1. 2
      fs/ggml/ggml.go

2
fs/ggml/ggml.go

@ -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]
}

Loading…
Cancel
Save