fixed_index: remove unused 'print_info' function

Signed-off-by: Hannes Laimer <h.laimer@proxmox.com>
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Hannes Laimer 2022-06-15 08:19:57 +00:00 committed by Wolfgang Bumiller
parent 045dfe3e93
commit 707e2b39f3

View File

@ -142,19 +142,6 @@ impl FixedIndexReader {
Ok(())
}
pub fn print_info(&self) {
log::info!("Size: {}", self.size);
log::info!("ChunkSize: {}", self.chunk_size);
let mut ctime_str = self.ctime.to_string();
if let Ok(s) = proxmox_time::strftime_local("%c", self.ctime) {
ctime_str = s;
}
log::info!("CTime: {}", ctime_str);
log::info!("UUID: {:?}", self.uuid);
}
}
impl IndexFile for FixedIndexReader {