We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e0496 commit c47b547Copy full SHA for c47b547
server/src/storage/object_storage.rs
@@ -473,9 +473,6 @@ pub trait ObjectStorage: Sync + 'static {
473
.to_str()
474
.expect("filename is valid string");
475
476
- // Log the filename being processed
477
- log::debug!("Processing file: {}", filename);
478
-
479
let mut file_date_part = filename.split('.').collect::<Vec<&str>>()[0];
480
file_date_part = file_date_part.split('=').collect::<Vec<&str>>()[1];
481
let compressed_size = file.metadata().map_or(0, |meta| meta.len());
0 commit comments