chore: remove error log to undefined health check route

This commit is contained in:
Jonas Kaninda
2024-10-28 02:07:28 +01:00
parent e2b51b3f0d
commit fa6e102cd8
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -11,3 +11,4 @@ bin
Makefile
NOTES.md
tests
configs

View File

@@ -88,7 +88,7 @@ func (heathRoute HealthCheckRoute) HealthCheckHandler(w http.ResponseWriter, r *
continue
}
} else {
logger.Error("Route %s's healthCheck is undefined", route.Name)
logger.Warn("Route %s's healthCheck is undefined", route.Name)
routes = append(routes, HealthCheckRouteResponse{Name: route.Name, Status: "undefined", Error: ""})
continue