fix(occ): hide sensitive data while config:app:set

in order to hide sensitive data from logs

Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
pull/50427/head
Misha M.-Kupriyanov 2024-12-12 15:24:17 +07:00 committed by backportbot[bot]
parent abab62b12f
commit 744d57d5d8
1 changed files with 1 additions and 1 deletions

@ -217,7 +217,7 @@ class SetConfig extends Base {
"<info>Config value '%s' for app '%s' is now set to '%s', stored as %s in %s</info>",
$configName,
$appName,
$current['value'],
$current['sensitive'] ? '<sensitive>' : $current['value'],
$current['typeString'],
$current['lazy'] ? 'lazy cache' : 'fast cache'
)