diff --git a/src/unstructured_client/_hooks/custom/pdf_utils.py b/src/unstructured_client/_hooks/custom/pdf_utils.py index 288cbd6c..0be178df 100644 --- a/src/unstructured_client/_hooks/custom/pdf_utils.py +++ b/src/unstructured_client/_hooks/custom/pdf_utils.py @@ -69,6 +69,7 @@ def is_pdf(file: shared.Files) -> bool: content = cast(bytes, file.content) PdfReader(io.BytesIO(content), strict=True) except (PdfReadError, UnicodeDecodeError): + logger.info("Loading PDF failed, so splitting is not enabled.") return False return True