mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-10 06:52:55 +00:00
tone down error log for successful process termination
This commit is contained in:
committed by
Dmitry Rodionov
parent
d6bfe955c6
commit
98ff0396f8
@@ -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)");
|
||||
|
||||
Reference in New Issue
Block a user