Added logging to pools and workers.

This commit is contained in:
Jay
2026-04-23 20:58:57 -04:00
parent 230e6e608a
commit 0ac8d9facd
11 changed files with 209 additions and 47 deletions
+2 -2
View File
@@ -233,7 +233,7 @@ func (c *Connection) shutdownSignalDone() {
func (c *Connection) shutdownLogStart() {
if c.logger != nil {
c.logger.Info("shutting down")
c.logger.Info("closing")
}
}
@@ -260,7 +260,7 @@ func (c *Connection) shutdownCloseChannels() {
func (c *Connection) shutdownLogComplete() {
if c.logger != nil {
c.logger.Info("connection closed")
c.logger.Info("closed")
}
}