From 77be84da65e8ac08bc89b92525ad6c0414f8d548 Mon Sep 17 00:00:00 2001 From: 409 <409dev@protonmail.com> Date: Tue, 29 Jul 2025 14:58:28 +0200 Subject: [PATCH] removed debug log --- backend/src/lib/outbound/file_system.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/src/lib/outbound/file_system.rs b/backend/src/lib/outbound/file_system.rs index f8d35ca..d8376ef 100644 --- a/backend/src/lib/outbound/file_system.rs +++ b/backend/src/lib/outbound/file_system.rs @@ -182,7 +182,6 @@ impl FileSystem { .await?; while let Ok(Some(chunk)) = upload_file.try_next().await { - tracing::info!("Writing chunk (len: {}) to {file_path}", chunk.len()); file.write(&chunk).await?; } }