aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2022-06-10 15:28:52 +0200
committerGitHub <noreply@github.com>2022-06-10 15:28:52 +0200
commit79f8356438be0953696cba7f339a6c49368f0227 (patch)
tree778daca8f8d2b16256652eb1d53dfde81f8c9c2b /lib
parent42d480c94a423233227368b69fc611310386492a (diff)
parent90c31cfddc42ae7e64112dfbea0995a25c94125d (diff)
downloadnextcloud-server-79f8356438be0953696cba7f339a6c49368f0227.tar.gz
nextcloud-server-79f8356438be0953696cba7f339a6c49368f0227.zip
Merge pull request #32685 from nextcloud/fix/external-storage-password-replacement
Fix replacing external storage password during debug log
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Authentication/LoginCredentials/Store.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/LoginCredentials/Store.php b/lib/private/Authentication/LoginCredentials/Store.php
index 0ab4c9a37cc..d3db0444664 100644
--- a/lib/private/Authentication/LoginCredentials/Store.php
+++ b/lib/private/Authentication/LoginCredentials/Store.php
@@ -100,7 +100,7 @@ class Store implements IStore {
} catch (SessionNotAvailableException $ex) {
$this->logger->debug('could not get login credentials because session is unavailable', ['app' => 'core', 'exception' => $ex]);
} catch (InvalidTokenException $ex) {
- $this->logger->debug('could not get login credentials because the token is invalid: ' . $ex->getMessage(), ['app' => 'core', 'exception' => $ex]);
+ $this->logger->debug('could not get login credentials because the token is invalid: ' . $ex->getMessage(), ['app' => 'core']);
$trySession = true;
} catch (PasswordlessTokenException $ex) {
$this->logger->debug('could not get login credentials because the token has no password', ['app' => 'core', 'exception' => $ex]);