From 6990102bb2d183571e907dfc35a9e22cd123392f Mon Sep 17 00:00:00 2001 From: Alek Westover Date: Mon, 12 Jun 2023 13:59:04 -0400 Subject: [PATCH] revert small change --- libs/remote_storage/src/local_fs.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/remote_storage/src/local_fs.rs b/libs/remote_storage/src/local_fs.rs index 061d12ceda..c081a6d361 100644 --- a/libs/remote_storage/src/local_fs.rs +++ b/libs/remote_storage/src/local_fs.rs @@ -213,7 +213,6 @@ impl RemoteStorage for LocalFs { async fn download(&self, from: &RemotePath) -> Result { let target_path = from.with_base(&self.storage_root); - println!("{:?}",target_path); if file_exists(&target_path).map_err(DownloadError::BadInput)? { let source = io::BufReader::new( fs::OpenOptions::new()