about summary refs log tree commit diff
path: root/tvix/castore/src/blobservice/object_store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/castore/src/blobservice/object_store.rs')
-rw-r--r--tvix/castore/src/blobservice/object_store.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/castore/src/blobservice/object_store.rs b/tvix/castore/src/blobservice/object_store.rs
index c2e54e15df..0a9bd85e98 100644
--- a/tvix/castore/src/blobservice/object_store.rs
+++ b/tvix/castore/src/blobservice/object_store.rs
@@ -14,7 +14,7 @@ use prost::Message;
 use tokio::io::{AsyncRead, AsyncWrite, AsyncWriteExt};
 use tokio_stream::StreamExt;
 use tonic::async_trait;
-use tracing::{debug, info, instrument, trace, Level};
+use tracing::{debug, instrument, trace, Level};
 use url::Url;
 
 use crate::{
@@ -325,7 +325,7 @@ async fn upload_chunk(
     match object_store.head(&chunk_path).await {
         // chunk already exists, nothing to do
         Ok(_) => {
-            info!("chunk already exists");
+            debug!("chunk already exists");
         }
 
         // chunk does not yet exist, compress and upload.
@@ -333,7 +333,7 @@ async fn upload_chunk(
             let chunk_data_compressed =
                 zstd::encode_all(Cursor::new(chunk_data), zstd::DEFAULT_COMPRESSION_LEVEL)?;
 
-            info!(chunk.compressed_size=%chunk_data_compressed.len(), "uploading chunk");
+            debug!(chunk.compressed_size=%chunk_data_compressed.len(), "uploading chunk");
 
             object_store
                 .as_ref()