index : static-web-server.git

ascending towards madness

author Jose Quintana <joseluisquintana20@gmail.com> 2021-10-31 11:37:59.0 +00:00:00
committer Jose Quintana <joseluisquintana20@gmail.com> 2021-10-31 11:38:42.0 +00:00:00
commit
b2d83d559401fa959259c15209b5bf7250648fcf [patch]
tree
21f17b1822f0721ead06745ce1e712f9631c3ac1
parent
6f10ef1aeccc115027a6b599fd3aafec050d6c0c
download
b2d83d559401fa959259c15209b5bf7250648fcf.tar.gz

refactor: minor log debug typo on singal module [skip ci]



Diff

 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!(),