fix: address 3 quality review findings — tracker_ok gate, LIMIT=0 warning, cache write log level

This commit is contained in:
2026-06-16 16:41:32 +00:00
parent 8846a4f1df
commit 817fa17e41
3 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ class EmbeddingCache:
np.save(tmp, embedding)
os.replace(tmp, final)
except Exception as e:
logger.debug("Cache write failed for %s: %s", asset_id, e)
logger.warning("Cache write failed for %s: %s", asset_id, e)
try:
os.remove(tmp)
except OSError: