mirror of
https://github.com/ollama/ollama.git
synced 2026-07-10 01:41:52 +00:00
quiet down kv log spew (#16105)
This commit is contained in:
parent
b9c0421f03
commit
da679adcde
1 changed files with 2 additions and 1 deletions
|
|
@ -15,6 +15,7 @@ import (
|
|||
|
||||
"github.com/ollama/ollama/format"
|
||||
"github.com/ollama/ollama/fs/util/bufioutil"
|
||||
"github.com/ollama/ollama/logutil"
|
||||
"github.com/ollama/ollama/ml"
|
||||
)
|
||||
|
||||
|
|
@ -323,7 +324,7 @@ func keyValue[T valueTypes | arrayValueTypes](kv KV, key string, defaultValue ..
|
|||
return val, true
|
||||
}
|
||||
|
||||
slog.Debug("key with type not found", "key", key, "default", defaultValue[0])
|
||||
logutil.Trace("key with type not found", "key", key, "default", defaultValue[0])
|
||||
return defaultValue[0], false
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue