From 32e737466b5d07502d5676f03cda9cb5927fb35f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 20 Jun 2022 14:32:25 +0200 Subject: [PATCH] Manager: clarify log message Change "accepted CORS origins" to "acceptable CORS origins", as the former is too ambiguous (it can mean "I just accepted these" or "These are the acceptable ones"). --- cmd/flamenco-manager/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/flamenco-manager/main.go b/cmd/flamenco-manager/main.go index 0b3439e0..aa305bf2 100644 --- a/cmd/flamenco-manager/main.go +++ b/cmd/flamenco-manager/main.go @@ -424,7 +424,7 @@ func corsOrigins(urls []url.URL) []string { url.Host = fmt.Sprintf("%s:%d", url.Hostname(), developmentWebInterfacePort) origins[i] = url.String() } - log.Debug().Str("origins", strings.Join(origins, " ")).Msg("accepted CORS origins") + log.Debug().Str("origins", strings.Join(origins, " ")).Msg("acceptable CORS origins") return origins }