fix: unify log format, use placeholders instead of string concatenation (#24544)

This commit is contained in:
GuanMu 2025-08-26 15:45:16 +08:00 committed by GitHub
commit 47f480c0dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -95,7 +95,7 @@ class CacheEmbedding(Embeddings):
db.session.rollback()
except Exception as ex:
db.session.rollback()
logger.exception("Failed to embed documents: %s")
logger.exception("Failed to embed documents")
raise ex
return text_embeddings