Commit d56e7787 by Torkel Ödegaard

Merge pull request #2637 from matschaffer/env-var-output-fix

Iterate over the right env override list variable
parents 6d7c8431 6c04ee1a
......@@ -550,7 +550,7 @@ func LogConfigurationInfo() {
if len(appliedEnvOverrides) > 0 {
text.WriteString("\tEnvironment variables used:\n")
for i, prop := range appliedCommandLineProperties {
for i, prop := range appliedEnvOverrides {
text.WriteString(fmt.Sprintf(" [%d]: %s\n", i, prop))
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment