diff --git a/cmd/synthetic-monitoring-agent/main.go b/cmd/synthetic-monitoring-agent/main.go index 329c9983a..e0da6741b 100644 --- a/cmd/synthetic-monitoring-agent/main.go +++ b/cmd/synthetic-monitoring-agent/main.go @@ -418,7 +418,7 @@ func validateK6URI(uri string) (string, error) { func notifyAboutDeprecatedFeatureFlags(features feature.Collection, zl zerolog.Logger) { for _, ff := range []string{feature.K6, feature.Traceroute} { if features.IsSet(ff) { - zl.Info().Msgf("the `%s` feature is now permanently enabled in the agent, you can remove it from the --feature flag without loss of functionality", ff) + zl.Info().Msgf("the `%s` feature is now permanently enabled in the agent, you can remove it from the -features flag without loss of functionality", ff) } } }