We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 852637a commit 3d44a95Copy full SHA for 3d44a95
internal/services/script/script.go
@@ -22,7 +22,7 @@ func New() *Server {
22
}
23
24
func (s *Server) Name() string {
25
- return definition.ServiceType_Native.String()
+ return definition.ServiceType_Script.String()
26
27
28
func (s *Server) Initialize(ctx context.Context, _ *plugin.ServiceOptions) error {
service.go
@@ -598,6 +598,8 @@ func (s *Service) stopService(ctx context.Context) {
598
append([]loggerApi.Attribute{logger.Error(err)}, svc.Info()...)...)
599
600
601
+
602
+ s.Logger().Info(ctx, "service stopped")
603
604
605
// stopDependentServices stops other services that are running along with the
0 commit comments