diff --git a/src/chocolatey/infrastructure.app/services/ChocolateyConfigSettingsService.cs b/src/chocolatey/infrastructure.app/services/ChocolateyConfigSettingsService.cs index 37aa1cf79c..b5f52f1eb9 100644 --- a/src/chocolatey/infrastructure.app/services/ChocolateyConfigSettingsService.cs +++ b/src/chocolatey/infrastructure.app/services/ChocolateyConfigSettingsService.cs @@ -162,7 +162,7 @@ public void feature_list(ChocolateyConfiguration configuration) { foreach (var feature in configFileSettings.Features) { - this.Log().Info(() => "{0} - {1} | {2}".format_with(feature.Name, !feature.Enabled ? "[Disabled]" : "[Enabled]", feature.Description)); + this.Log().Info(() => "{1} {0} - {2}".format_with(feature.Name, !feature.Enabled ? "[Disabled]" : "[Enabled] ", feature.Description)); } }