From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 7948F69347 for ; Fri, 11 Mar 2022 16:08:07 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 7721026713 for ; Fri, 11 Mar 2022 16:08:07 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 8714F266EC for ; Fri, 11 Mar 2022 16:08:04 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 543A3439DD for ; Fri, 11 Mar 2022 16:08:04 +0100 (CET) From: Hannes Laimer To: pbs-devel@lists.proxmox.com Date: Fri, 11 Mar 2022 15:07:49 +0000 Message-Id: <20220311150755.73338-5-h.laimer@proxmox.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220311150755.73338-1-h.laimer@proxmox.com> References: <20220311150755.73338-1-h.laimer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.041 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pbs-devel] [PATCH proxmox-backup 04/10] pbs-datastore: replace print with log macro X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Mar 2022 15:08:07 -0000 Signed-off-by: Hannes Laimer --- pbs-datastore/src/catalog.rs | 6 +++--- pbs-datastore/src/datastore.rs | 4 ++-- pbs-datastore/src/dynamic_index.rs | 2 +- pbs-datastore/src/fixed_index.rs | 14 +++++++------- pbs-datastore/src/paperkey.rs | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pbs-datastore/src/catalog.rs b/pbs-datastore/src/catalog.rs index 22454921..239e4428 100644 --- a/pbs-datastore/src/catalog.rs +++ b/pbs-datastore/src/catalog.rs @@ -562,7 +562,7 @@ impl CatalogReader { match etype { CatalogEntryType::Directory => { - println!("{} {:?}", etype, path); + log::info!("{} {:?}", etype, path); if offset > start { bail!("got wrong directory offset ({} > {})", offset, start); } @@ -575,7 +575,7 @@ impl CatalogReader { mtime_string = s; } - println!( + log::info!( "{} {:?} {} {}", etype, path, @@ -584,7 +584,7 @@ impl CatalogReader { ); } _ => { - println!("{} {:?}", etype, path); + log::info!("{} {:?}", etype, path); } } diff --git a/pbs-datastore/src/datastore.rs b/pbs-datastore/src/datastore.rs index d416c8d8..38b3faab 100644 --- a/pbs-datastore/src/datastore.rs +++ b/pbs-datastore/src/datastore.rs @@ -122,7 +122,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() } } @@ -263,7 +263,7 @@ impl DataStore { if let Ok(name) = std::str::from_utf8(file_name) { if wanted_files.contains(name) { continue; } } - println!("remove unused file {:?}", item.file_name()); + log::info!("remove unused file {:?}", item.file_name()); let dirfd = item.parent_fd(); let _res = unsafe { libc::unlinkat(dirfd, item.file_name().as_ptr(), 0) }; } diff --git a/pbs-datastore/src/dynamic_index.rs b/pbs-datastore/src/dynamic_index.rs index 7a1a39d3..6f949eb6 100644 --- a/pbs-datastore/src/dynamic_index.rs +++ b/pbs-datastore/src/dynamic_index.rs @@ -461,7 +461,7 @@ impl DynamicChunkWriter { self.stat.disk_size += compressed_size; } - println!( + log::info!( "ADD CHUNK {:016x} {} {}% {} {}", self.chunk_offset, chunk_size, diff --git a/pbs-datastore/src/fixed_index.rs b/pbs-datastore/src/fixed_index.rs index 21404eed..4d702769 100644 --- a/pbs-datastore/src/fixed_index.rs +++ b/pbs-datastore/src/fixed_index.rs @@ -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, diff --git a/pbs-datastore/src/paperkey.rs b/pbs-datastore/src/paperkey.rs index 8caca0b9..27ef1028 100644 --- a/pbs-datastore/src/paperkey.rs +++ b/pbs-datastore/src/paperkey.rs @@ -63,7 +63,7 @@ pub fn generate_paper_key( (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."); } } -- 2.30.2