Skip to content

Commit

Permalink
fix(occ): hide sensitive data while config:app:set
Browse files Browse the repository at this point in the history
in order to hide sensitive data from logs

Signed-off-by: Misha M.-Kupriyanov <kupriyanov@strato.de>
  • Loading branch information
printminion-co committed Dec 19, 2024
1 parent ae0521e commit b1b1c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Command/Config/App/SetConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
"<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'
)
Expand Down

0 comments on commit b1b1c1b

Please sign in to comment.