ServiceRegistry.StartAll: Remove redundant log. (#14958)

This commit is contained in:
Manu NALEPA
2025-02-19 18:12:32 +01:00
committed by GitHub
parent 3baaa732df
commit c3edb32558
2 changed files with 2 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
### Removed
- Removed the log summarizing all started services.

View File

@@ -40,7 +40,6 @@ func NewServiceRegistry() *ServiceRegistry {
// StartAll initialized each service in order of registration.
func (s *ServiceRegistry) StartAll() {
log.Debugf("Starting %d services: %v", len(s.serviceTypes), s.serviceTypes)
for _, kind := range s.serviceTypes {
log.Debugf("Starting service type %v", kind)
go s.services[kind].Start()