5
0
mirror of git://git.proxmox.com/git/proxmox-backup.git synced 2025-01-21 18:03:59 +03:00

pbs-datastore: replace print with log macro

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:50 +00:00 committed by Wolfgang Bumiller
parent e10fccf5cc
commit dce4b5403b
5 changed files with 13 additions and 13 deletions

View File

@ -636,7 +636,7 @@ impl<R: Read + Seek> CatalogReader<R> {
match etype {
CatalogEntryType::Directory => {
println!("{} {:?}", etype, path);
log::info!("{} {:?}", etype, path);
if offset > start {
bail!("got wrong directory offset ({} > {})", offset, start);
}
@ -649,10 +649,10 @@ impl<R: Read + Seek> CatalogReader<R> {
mtime_string = s;
}
println!("{} {:?} {} {}", etype, path, size, mtime_string,);
log::info!("{} {:?} {} {}", etype, path, size, mtime_string,);
}
_ => {
println!("{} {:?}", etype, path);
log::info!("{} {:?}", etype, path);
}
}

View File

@ -233,7 +233,7 @@ impl DataStore {
match serde_json::from_str(&state) {
Ok(state) => state,
Err(err) => {
eprintln!("error reading gc-status: {}", err);
log::error!("error reading gc-status: {}", err);
GarbageCollectionStatus::default()
}
}

View File

@ -465,7 +465,7 @@ impl DynamicChunkWriter {
self.stat.disk_size += compressed_size;
}
println!(
log::info!(
"ADD CHUNK {:016x} {} {}% {} {}",
self.chunk_offset,
chunk_size,

View File

@ -51,7 +51,7 @@ unsafe impl Sync for FixedIndexReader {}
impl Drop for FixedIndexReader {
fn drop(&mut self) {
if let Err(err) = self.unmap() {
eprintln!("Unable to unmap file - {}", err);
log::error!("Unable to unmap file - {}", err);
}
}
}
@ -144,16 +144,16 @@ impl FixedIndexReader {
}
pub fn print_info(&self) {
println!("Size: {}", self.size);
println!("ChunkSize: {}", self.chunk_size);
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;
}
println!("CTime: {}", ctime_str);
println!("UUID: {:?}", self.uuid);
log::info!("CTime: {}", ctime_str);
log::info!("UUID: {:?}", self.uuid);
}
}
@ -247,7 +247,7 @@ impl Drop for FixedIndexWriter {
fn drop(&mut self) {
let _ = std::fs::remove_file(&self.tmp_filename); // ignore errors
if let Err(err) = self.unmap() {
eprintln!("Unable to unmap file {:?} - {}", self.tmp_filename, err);
log::error!("Unable to unmap file {:?} - {}", self.tmp_filename, err);
}
}
}
@ -418,7 +418,7 @@ impl FixedIndexWriter {
let digest = &chunk_info.digest;
println!(
log::info!(
"ADD CHUNK {} {} {}% {} {}",
idx,
chunk_len,

View File

@ -63,7 +63,7 @@ pub fn generate_paper_key<W: Write>(
(lines, false)
}
Err(err) => {
eprintln!("Couldn't parse data as KeyConfig - {}", err);
log::error!("Couldn't parse data as KeyConfig - {}", err);
bail!("Neither a PEM-formatted private key, nor a PBS key file.");
}
}