This commit is contained in:
Daniel Hiltgen 2026-05-12 15:53:50 -04:00 committed by GitHub
commit 7a901d4477
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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