Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-06-17 19:40:14 +0300
committerGitHub <noreply@github.com>2022-06-17 19:40:14 +0300
commit3e64e3e57d3beb36af6ffe9817dde0c133c6b162 (patch)
treed9adaaf467b792539e9c7b8970bf6ee8b99c811f
parentb74d8b9a7bfecb41a6181d493bbfde28141ae533 (diff)
parent3226f0ca46b0a40a1b9028832d1ed496888b31d0 (diff)
Merge pull request #32917 from nextcloud/revert-32845-backport/32685/stable22
Revert "[stable22] Fix replacing external storage password during debug log"
-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 d3db0444664..0ab4c9a37cc 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']);
+ $this->logger->debug('could not get login credentials because the token is invalid: ' . $ex->getMessage(), ['app' => 'core', 'exception' => $ex]);
$trySession = true;
} catch (PasswordlessTokenException $ex) {
$this->logger->debug('could not get login credentials because the token has no password', ['app' => 'core', 'exception' => $ex]);