mirror of
https://github.com/ollama/ollama.git
synced 2025-05-10 18:06:33 +02:00
ggml: Reduce log level of "key not found"
Most of the time this is not an error.
This commit is contained in:
parent
b1c40138da
commit
7073600797
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue