remove streaming debugging log (#1300)

This commit is contained in:
Shuchang Zheng
2024-12-01 23:57:48 -08:00
committed by GitHub
parent c401e37a05
commit d18f2d41e7

View File

@@ -81,11 +81,6 @@ class LocalStorage(BaseStorage):
with open(file_path, "rb") as f:
return f.read()
except Exception:
LOG.exception(
"Failed to retrieve streaming file.",
organization_id=organization_id,
file_name=file_name,
)
return None
async def store_browser_session(self, organization_id: str, workflow_permanent_id: str, directory: str) -> None: