diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-01-03 12:54:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 12:54:56 +0100 |
commit | f9490505ad71f45154d61eeb52bf4c44700d2e63 (patch) | |
tree | 50b1f88b0d55d23d37ddab004afa6240cdc13a07 /lib | |
parent | 9ed0f50c256c2a020df2a9bb7d3659f43d3922d2 (diff) | |
parent | 903d7fcd6a6866abb992610de311710e0ad4a48d (diff) | |
download | nextcloud-server-f9490505ad71f45154d61eeb52bf4c44700d2e63.tar.gz nextcloud-server-f9490505ad71f45154d61eeb52bf4c44700d2e63.zip |
Merge pull request #7672 from nextcloud/backport/6977/log-censor
[stable12] Added additional methods for removal of sensitive info
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Log.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/private/Log.php b/lib/private/Log.php index d93b29414e6..6da23bfbaee 100644 --- a/lib/private/Log.php +++ b/lib/private/Log.php @@ -69,6 +69,8 @@ class Log implements ILogger { 'loginWithPassword', 'updatePrivateKeyPassword', 'validateUserPass', + 'loginWithToken', + '\{closure\}', // TokenProvider 'getToken', @@ -96,6 +98,10 @@ class Log implements ILogger { 'bind', 'areCredentialsValid', 'invokeLDAPMethod', + + // Encryption + 'storeKeyPair', + 'setupUser', ]; /** |