Skip to content

Commit 3297f67

Browse files
committed
fix: Change softcap extraction error logging to warning level
Address gemini-code-assist feedback: use logger.warning instead of logger.debug to alert users of potential GGUF metadata extraction issues. Include model path in log message for easier debugging. Signed-off-by: Christina Brundage <christina@katt.dev> Signed-off-by: Christina <truffle@gmail.com>
1 parent b9e724d commit 3297f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/transformers_utils/gguf_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def extract_softcap_from_gguf(model: str) -> dict[str, float]:
256256
return result
257257

258258
except Exception as e:
259-
logger.debug("Error extracting softcap from GGUF: %s", e)
259+
logger.warning("Error extracting softcap from GGUF '%s': %s", model, e)
260260
return {}
261261

262262

0 commit comments

Comments
 (0)