Island: Remove superfluous log statement

This commit is contained in:
Mike Salvatore 2022-06-06 13:26:19 -04:00
parent 4e520c135f
commit 1da6515751
1 changed files with 0 additions and 1 deletions

View File

@ -44,7 +44,6 @@ class LocalStorageFileRepository(IFileRepository):
logger.debug(f"Opening {safe_file_path}")
return open(safe_file_path, "rb")
except OSError as err:
logger.error(err)
raise FileRetrievalError(f"Failed to retrieve file {safe_file_path}: {err}") from err
def delete_file(self, unsafe_file_name: str):