Restore error logging behavior.
This commit is contained in:
parent
d211a9c97e
commit
c37e3a64d2
1 changed files with 3 additions and 4 deletions
|
|
@ -347,11 +347,10 @@ class MarkItDown:
|
||||||
_kwargs["_parent_converters"] = self._page_converters
|
_kwargs["_parent_converters"] = self._page_converters
|
||||||
|
|
||||||
# If we hit an error log it and keep trying
|
# If we hit an error log it and keep trying
|
||||||
# try:
|
try:
|
||||||
if True:
|
|
||||||
res = converter.convert(local_path, **_kwargs)
|
res = converter.convert(local_path, **_kwargs)
|
||||||
# except Exception:
|
except Exception:
|
||||||
# error_trace = ("\n\n" + traceback.format_exc()).strip()
|
error_trace = ("\n\n" + traceback.format_exc()).strip()
|
||||||
|
|
||||||
if res is not None:
|
if res is not None:
|
||||||
# Normalize the content
|
# Normalize the content
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue