From 98ff0396f83e9686589ec47027bb1737737b9f82 Mon Sep 17 00:00:00 2001 From: Dmitry Rodionov Date: Mon, 5 Dec 2022 13:31:25 +0200 Subject: [PATCH] tone down error log for successful process termination --- pageserver/src/walredo.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pageserver/src/walredo.rs b/pageserver/src/walredo.rs index dfcd49f5c2..378f8deed7 100644 --- a/pageserver/src/walredo.rs +++ b/pageserver/src/walredo.rs @@ -922,8 +922,7 @@ impl NoLeakChild { match child.wait() { Ok(exit_status) => { - // log at error level since .kill() is something we only do on errors ATM - error!(exit_status = %exit_status, "wait successful"); + info!(exit_status = %exit_status, "wait successful"); } Err(e) => { error!(error = %e, "wait error; might leak the child process; it will show as zombie (defunct)");