From b2d83d559401fa959259c15209b5bf7250648fcf Mon Sep 17 00:00:00 2001 From: Jose Quintana Date: Sun, 31 Oct 2021 12:37:59 +0100 Subject: [PATCH] refactor: minor log debug typo on singal module [skip ci] --- src/signals.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signals.rs b/src/signals.rs index 20fc4da..438ebcf 100644 --- a/src/signals.rs +++ b/src/signals.rs @@ -21,7 +21,7 @@ pub async fn wait_for_signals(signals: Signals) { tracing::debug!("SIGHUP caught, nothing to do about") } SIGTERM | SIGINT | SIGQUIT => { - tracing::debug!("an incoming SIGTERM received, SIGINT or SIGQUIT signal, delegating graceful shutdown to server"); + tracing::debug!("SIGTERM, SIGINT or SIGQUIT signal received, delegating graceful shutdown to the server"); break; } _ => unreachable!(), -- libgit2 1.7.2