From 5ff3aef78be325314f38a6014118715b8cc2aab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20Kr=C3=BCger?= Date: Wed, 28 Feb 2024 14:35:28 +0100 Subject: [PATCH] chore: Remove leftover logging value --- wnfs/src/public/directory.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/wnfs/src/public/directory.rs b/wnfs/src/public/directory.rs index 927d6a02..46313398 100644 --- a/wnfs/src/public/directory.rs +++ b/wnfs/src/public/directory.rs @@ -851,10 +851,6 @@ impl Storable for PublicDirectory { cid: Option<&Cid>, serializable: Self::Serializable, ) -> Result { - println!( - "Public Directory from serializable cid: {}", - cid.map(Cid::to_string).unwrap_or("None".to_string()) - ); let PublicNodeSerializable::Dir(serializable) = serializable else { bail!(FsError::UnexpectedNodeType(NodeType::PublicFile)); };