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

3
.gitignore vendored
View File

@@ -10,4 +10,5 @@ goma
bin
Makefile
NOTES.md
tests
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