chore(lint): Use logging.exception instead of logging.error (#10415)
This commit is contained in:
parent
dd5ffaf058
commit
574c4a264f
22 changed files with 31 additions and 30 deletions
|
|
@ -945,7 +945,7 @@ class DocumentRetryApi(DocumentResource):
|
|||
raise DocumentAlreadyFinishedError()
|
||||
retry_documents.append(document)
|
||||
except Exception as e:
|
||||
logging.error(f"Document {document_id} retry failed: {str(e)}")
|
||||
logging.exception(f"Document {document_id} retry failed: {str(e)}")
|
||||
continue
|
||||
# retry document
|
||||
DocumentService.retry_document(dataset_id, retry_documents)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue