chore: warn -> debug

Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com>
This commit is contained in:
Christopher Phillips 2025-10-22 13:24:47 -04:00
parent 64dc451345
commit 38c0e6e899
No known key found for this signature in database

View File

@ -59,7 +59,7 @@ func computeMetadataHash(metadata *pkg.GGUFFileHeader) string {
// Marshal to JSON for stable hashing
jsonBytes, err := json.Marshal(hashData)
if err != nil {
log.Warnf("failed to marshal metadata for hashing: %v", err)
log.Debugf("failed to marshal metadata for hashing: %v", err)
return ""
}