Skip to content

Commit

Permalink
remove extra logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Maneren committed Aug 24, 2024
1 parent 7e08e64 commit 732a4bc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/fileserv/archive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ where

let entry = ZipEntryBuilder::new(zip_name, Compression::Deflate);


let mut sink = zip.write_entry_stream(entry).await.map_err(|e| {
Error::ArchiveCreation(
format!("Failed to write {} to the ZIP archive", name.display()),
Expand All @@ -259,8 +258,6 @@ where
)
})?;

logging::log!("Wrote {} bytes to the ZIP archive", bytes);

sink.close().await.map_err(|e| {
Error::ArchiveCreation(
format!("Failed to write {} to the ZIP archive", name.display()),
Expand Down

0 comments on commit 732a4bc

Please sign in to comment.