diff --git a/core/service/servicegroup.go b/core/service/servicegroup.go index 27ec45ad..c8b0715a 100644 --- a/core/service/servicegroup.go +++ b/core/service/servicegroup.go @@ -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() })