diff --git a/core/command/config/app/deleteconfig.php b/core/command/config/app/deleteconfig.php index 0031142358e4bf9e3eb875f68c770e4f1bfe5304..bc031b0d589ec58dec96a1e06421e48b6dae4358 100644 --- a/core/command/config/app/deleteconfig.php +++ b/core/command/config/app/deleteconfig.php @@ -70,12 +70,12 @@ class DeleteConfig extends Base { $configName = $input->getArgument('name'); if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->config->getAppKeys($appName))) { - $output->writeln('<error>Config ' . $configName . ' could not be deleted because it did not exist</error>'); + $output->writeln('<error>Config ' . $configName . ' of app ' . $appName . ' could not be deleted because it did not exist</error>'); return 1; } $this->config->deleteAppValue($appName, $configName); - $output->writeln('<info>System config value ' . $configName . ' deleted</info>'); + $output->writeln('<info>Config value ' . $configName . ' of app ' . $appName . ' deleted</info>'); return 0; } } diff --git a/core/command/config/app/setconfig.php b/core/command/config/app/setconfig.php index 91775094fdd8bd2c259d9f885913cf80bd1bc82b..eea58a63c5ed1b27cb860c9898ef1de3c4d1031a 100644 --- a/core/command/config/app/setconfig.php +++ b/core/command/config/app/setconfig.php @@ -76,7 +76,7 @@ class SetConfig extends Base { $configName = $input->getArgument('name'); if (!in_array($configName, $this->config->getAppKeys($appName)) && $input->hasParameterOption('--update-only')) { - $output->writeln('<comment>Value not updated, as it has not been set before.</comment>'); + $output->writeln('<comment>Config value ' . $configName . ' for app ' . $appName . ' not updated, as it has not been set before.</comment>'); return 1; } diff --git a/core/command/config/system/deleteconfig.php b/core/command/config/system/deleteconfig.php index 49bc2bc8c0304c2d0e21761f9194f0a25ebdd0a4..4d193647c85f6158bdc34543275ee726f43694ae 100644 --- a/core/command/config/system/deleteconfig.php +++ b/core/command/config/system/deleteconfig.php @@ -64,7 +64,7 @@ class DeleteConfig extends Base { $configName = $input->getArgument('name'); if ($input->hasParameterOption('--error-if-not-exists') && !in_array($configName, $this->systemConfig->getKeys())) { - $output->writeln('<error>Config ' . $configName . ' could not be deleted because it did not exist</error>'); + $output->writeln('<error>System config ' . $configName . ' could not be deleted because it did not exist</error>'); return 1; } diff --git a/core/command/config/system/setconfig.php b/core/command/config/system/setconfig.php index cb2f9fe616fa16606f8d5a422fbdd438965cc641..82b36cca1649b0a2df62f00e7f48af1deb7c97ab 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');