summaryrefslogtreecommitdiffstats
path: root/core/command/config/system/setconfig.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/command/config/system/setconfig.php')
-rw-r--r--core/command/config/system/setconfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/config/system/setconfig.php b/core/command/config/system/setconfig.php
index cb2f9fe616f..82b36cca164 100644
--- a/core/command/config/system/setconfig.php
+++ b/core/command/config/system/setconfig.php
@@ -70,7 +70,7 @@ class SetConfig extends Base {
$configName = $input->getArgument('name');
if (!in_array($configName, $this->systemConfig->getKeys()) && $input->hasParameterOption('--update-only')) {
- $output->writeln('<comment>Value not updated, as it has not been set before.</comment>');
+ $output->writeln('<comment>Config value ' . $configName . ' not updated, as it has not been set before.</comment>');
return 1;
}
$configValue = $input->getOption('value');