mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
Don't log Keys
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5e0c5a0a83
commit
f5ee7736d9
1 changed files with 5 additions and 1 deletions
|
|
@ -29,6 +29,7 @@ namespace OC\Log;
|
|||
|
||||
use OC\Core\Controller\SetupController;
|
||||
use OC\HintException;
|
||||
use OC\Security\IdentityProof\Key;
|
||||
use OC\Setup;
|
||||
|
||||
class ExceptionSerializer {
|
||||
|
|
@ -94,7 +95,10 @@ class ExceptionSerializer {
|
|||
],
|
||||
Setup::class => [
|
||||
'install'
|
||||
]
|
||||
],
|
||||
Key::class => [
|
||||
'__construct'
|
||||
],
|
||||
];
|
||||
|
||||
private function editTrace(array &$sensitiveValues, array $traceLine): array {
|
||||
|
|
|
|||
Loading…
Reference in a new issue