From df9ffdda9ef20af7c4f7278f5a2c0fc792b7b312 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 26 Dec 2025 10:24:31 -0600 Subject: [PATCH] add debug log about waiting for modules to close --- router.go | 1 + 1 file changed, 1 insertion(+) diff --git a/router.go b/router.go index 9a1c2cb..4e5ac52 100644 --- a/router.go +++ b/router.go @@ -117,6 +117,7 @@ func (r *Router) Run() { }) } <-r.Context.Done() + r.logger.Debug("waiting for modules to exit") r.moduleWait.Wait() r.logger.Info("done") }