Don't log Keys
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
52dd1e3a80
commit
a7f26cfe28
|
@ -30,6 +30,7 @@ namespace OC\Log;
|
||||||
|
|
||||||
use OC\Core\Controller\SetupController;
|
use OC\Core\Controller\SetupController;
|
||||||
use OC\HintException;
|
use OC\HintException;
|
||||||
|
use OC\Security\IdentityProof\Key;
|
||||||
use OC\Setup;
|
use OC\Setup;
|
||||||
|
|
||||||
class ExceptionSerializer {
|
class ExceptionSerializer {
|
||||||
|
@ -95,7 +96,10 @@ class ExceptionSerializer {
|
||||||
],
|
],
|
||||||
Setup::class => [
|
Setup::class => [
|
||||||
'install'
|
'install'
|
||||||
]
|
],
|
||||||
|
Key::class => [
|
||||||
|
'__construct'
|
||||||
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
private function editTrace(array &$sensitiveValues, array $traceLine): array {
|
private function editTrace(array &$sensitiveValues, array $traceLine): array {
|
||||||
|
|
Loading…
Reference in New Issue