Commit 70736007 authored by Jesse Gross's avatar Jesse Gross Committed by Jesse Gross
Browse files

ggml: Reduce log level of "key not found"

Most of the time this is not an error.
parent b1c40138
......@@ -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]
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment