(rs []resources.Route)
| 58 | } |
| 59 | |
| 60 | func routeSummary(rs []resources.Route) string { |
| 61 | formattedRoutes := []string{} |
| 62 | for _, route := range rs { |
| 63 | formattedRoutes = append(formattedRoutes, route.URL) |
| 64 | } |
| 65 | return strings.Join(formattedRoutes, ", ") |
| 66 | } |
| 67 | |
| 68 | func formatLogRateLimit(limit int64) string { |
| 69 | if limit == -1 { |