From 604d442f307ede363708573fb3bddec9f4c5ff00 Mon Sep 17 00:00:00 2001 From: George Robinson Date: Tue, 13 Feb 2024 14:35:03 +0000 Subject: [PATCH] Fix log line in featurecontrol (#3719) This commit fixes a log line in the featurecontrol package which should be "UTF-8 strict mode" and not "UTF-8 mode". Signed-off-by: George Robinson --- featurecontrol/featurecontrol.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/featurecontrol/featurecontrol.go b/featurecontrol/featurecontrol.go index a8a55852..9ff7a2d8 100644 --- a/featurecontrol/featurecontrol.go +++ b/featurecontrol/featurecontrol.go @@ -97,7 +97,7 @@ func NewFlags(logger log.Logger, features string) (Flagger, error) { level.Warn(logger).Log("msg", "Classic mode enabled") case FeatureUTF8StrictMode: opts = append(opts, enableUTF8StrictMode()) - level.Warn(logger).Log("msg", "UTF-8 mode enabled") + level.Warn(logger).Log("msg", "UTF-8 strict mode enabled") default: return nil, fmt.Errorf("Unknown option '%s' for --enable-feature", feature) }