mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-02 16:28:39 +08:00
fix(servicegroup): use logx for shutdown message (#3719)
This commit is contained in:
parent
400386459c
commit
919477ffe4
@ -1,8 +1,7 @@
|
||||
package service
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
||||
"github.com/zeromicro/go-zero/core/logx"
|
||||
"github.com/zeromicro/go-zero/core/proc"
|
||||
"github.com/zeromicro/go-zero/core/syncx"
|
||||
"github.com/zeromicro/go-zero/core/threading"
|
||||
@ -51,7 +50,7 @@ func (sg *ServiceGroup) Add(service Service) {
|
||||
// Also, quitting this method will close the logx output.
|
||||
func (sg *ServiceGroup) Start() {
|
||||
proc.AddShutdownListener(func() {
|
||||
log.Println("Shutting down...")
|
||||
logx.Info("Shutting down service in group")
|
||||
sg.stopOnce()
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user