File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,11 +115,11 @@ func (this *defaultServer) watchShutdown(waiter *sync.WaitGroup) {
115
115
<- this .softContext .Done () // waiting for soft context shutdown to occur
116
116
ctx , cancel := context .WithTimeout (this .hardContext , this .shutdownTimeout ) // wait until shutdownTimeout for shutdown
117
117
defer cancel ()
118
- this .logger .Printf ("[INFO] Shutting down HTTP server..." )
118
+ this .logger .Printf ("[INFO] Shutting down HTTP server [%s] ..." , this . listenAddress )
119
119
shutdownError = this .httpServer .Shutdown (ctx )
120
120
}
121
121
func (this * defaultServer ) awaitOutstandingRequests (err error ) {
122
- defer this .logger .Printf ("[INFO] HTTP server shutdown complete." )
122
+ defer this .logger .Printf ("[INFO] HTTP server shutdown complete. [%s]" , this . listenAddress )
123
123
124
124
if err == nil {
125
125
return
You can’t perform that action at this time.
0 commit comments