From a5ada4d9ae01d6c87cbc62705906c8dfe96caffb Mon Sep 17 00:00:00 2001 From: Martin Hoffmann Date: Fri, 20 Mar 2026 16:35:08 +0100 Subject: [PATCH] Different diagnostics. --- src/server/pubd/rrdp.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/pubd/rrdp.rs b/src/server/pubd/rrdp.rs index fa5a98f7..50c1bb0f 100644 --- a/src/server/pubd/rrdp.rs +++ b/src/server/pubd/rrdp.rs @@ -643,6 +643,7 @@ impl RrdpServer { self.session.uuid(), self.serial, snapshot, deltas, ); let notification_path_new = self.notification_path_new(); + eprintln!("Writing notification file."); let mut notification_file_new = file::create_file_with_path(¬ification_path_new)?; notification @@ -665,6 +666,7 @@ impl RrdpServer { err ).into()); } + eprintln!("Done writing notification file."); // Rename the new file so it becomes current. let notification_path = self.notification_path(); @@ -832,7 +834,6 @@ impl RrdpServer { if path.is_dir() { let _best_effort_rm = fs::remove_dir_all(path); } else { - eprintln!("Deleting stray RRDP file {}", path.display()); let _best_effort_rm = fs::remove_file(path); } }