From 35c73cefc0c55709caa54df4a3e2f6c052785af3 Mon Sep 17 00:00:00 2001 From: Jafar Atili Date: Tue, 22 Aug 2023 10:29:49 +0300 Subject: [PATCH] Added log before waiting on threads --- core/uwsgi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/uwsgi.c b/core/uwsgi.c index 16137f6ed..ff999f204 100755 --- a/core/uwsgi.c +++ b/core/uwsgi.c @@ -1321,6 +1321,7 @@ void end_me(int signum) { static void simple_goodbye_cruel_world(const char *reason) { if (uwsgi.threads > 1 && !uwsgi_instance_is_dying) { + uwsgi_log_verbose("Now waiting on process %d threads\n", getpid()); wait_for_threads(); }