Fix: changed GetFullAddr() method: add debug point

This commit is contained in:
Piotr Biernat 2024-07-17 22:07:16 +02:00
parent 4ce9064fbb
commit 22bc1e29a3

View File

@ -122,7 +122,7 @@ func (s *Service) RegisterHealthChecks() {
ticker := time.NewTicker(interval)
for range ticker.C {
if _, err := s.healthCheck(); err != nil {
fmt.Printf("HealthCheck endpoint not available #: %v\n", err)
fmt.Printf("HealthCheck endpoint not available (%s)#: %v\n", s.GetFullAddr(), err)
}
}
}()