Skip to content

Commit c47b547

Browse files
Update object_storage.rs
removed unnecessary log::debug statement
1 parent 17e0496 commit c47b547

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

server/src/storage/object_storage.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,9 +473,6 @@ pub trait ObjectStorage: Sync + 'static {
473473
.to_str()
474474
.expect("filename is valid string");
475475

476-
// Log the filename being processed
477-
log::debug!("Processing file: {}", filename);
478-
479476
let mut file_date_part = filename.split('.').collect::<Vec<&str>>()[0];
480477
file_date_part = file_date_part.split('=').collect::<Vec<&str>>()[1];
481478
let compressed_size = file.metadata().map_or(0, |meta| meta.len());

0 commit comments

Comments
 (0)