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:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-06-15 13:26:02 +0300
committerGitHub <noreply@github.com>2022-06-15 13:26:02 +0300
commit28b3be9aeec5ac288b90b610d8a2b40d145604d1 (patch)
tree1cb4ce5fcaecfc34ee07d80d5cd1be02901a04bd
parentf3872c6626aa72fb628445c27506f776c2499f95 (diff)
parent6f2c402b3ef163c04037b42b44d6b04db5be5503 (diff)
Merge pull request #32845 from nextcloud/backport/32685/stable22
[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 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]);