diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-07 21:04:49 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-10-07 21:04:49 +0200 |
commit | a90921e23987559c4f51c59da8d33c90c64060eb (patch) | |
tree | e7f7a15ec4915bdadf7ae9a3f45297b093691c27 /lib/private/Log | |
parent | 5bd1873511c214330822b6579a1f5374ed7a5dfe (diff) | |
download | nextcloud-server-a90921e23987559c4f51c59da8d33c90c64060eb.tar.gz nextcloud-server-a90921e23987559c4f51c59da8d33c90c64060eb.zip |
fix(logger): Remove more parameters of other methodsbugfix/noid/censor-more-values
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Log')
-rw-r--r-- | lib/private/Log/ExceptionSerializer.php | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/lib/private/Log/ExceptionSerializer.php b/lib/private/Log/ExceptionSerializer.php index 03beed7cce1..25e52e66f39 100644 --- a/lib/private/Log/ExceptionSerializer.php +++ b/lib/private/Log/ExceptionSerializer.php @@ -6,6 +6,7 @@ namespace OC\Log; use OC\Core\Controller\SetupController; +use OC\Http\Client\Client; use OC\Security\IdentityProof\Key; use OC\Setup; use OC\SystemConfig; @@ -106,6 +107,22 @@ class ExceptionSerializer { Key::class => [ '__construct' ], + Client::class => [ + 'request', + 'delete', + 'deleteAsync', + 'get', + 'getAsync', + 'head', + 'headAsync', + 'options', + 'optionsAsync', + 'patch', + 'post', + 'postAsync', + 'put', + 'putAsync', + ], \Redis::class => [ 'auth' ], @@ -196,13 +213,13 @@ class ExceptionSerializer { private function removeValuesFromArgs($args, $values): array { $workArgs = []; - foreach ($args as $arg) { + foreach ($args as $key => $arg) { if (in_array($arg, $values, true)) { $arg = self::SENSITIVE_VALUE_PLACEHOLDER; } elseif (is_array($arg)) { $arg = $this->removeValuesFromArgs($arg, $values); } - $workArgs[] = $arg; + $workArgs[$key] = $arg; } return $workArgs; } |