We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dfe6ad commit 6287cbfCopy full SHA for 6287cbf
cmd/postgres-operator/main.go
@@ -137,7 +137,9 @@ func main() {
137
138
ctx = feature.NewContext(ctx, features)
139
// This logs just the feature gates as set by the user
140
- log.Info("feature gates enabled during deployment", "PGO_FEATURE_GATES", feature.ShowAssigned(ctx))
+ log.Info("feature gates set during deployment", "PGO_FEATURE_GATES", feature.ShowAssigned(ctx))
141
+ // This logs the feature gates that are enabled, including gates that are on by default
142
+ log.Info(fmt.Sprintf("feature gates enabled: %s", feature.ShowEnabled(ctx)))
143
144
cfg, err := runtime.GetConfig()
145
assertNoError(err)
0 commit comments