diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-06-01 10:31:19 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2022-06-13 07:49:14 +0000 |
commit | b1f594d5557521703f52e152649a541c777e6a8b (patch) | |
tree | 990d1947da9c41608a06fa9d80f66e7b15aaaf65 /lib/private | |
parent | ca41d914bd8831d8a7098617cce7a6d48a23ff5b (diff) | |
download | nextcloud-server-b1f594d5557521703f52e152649a541c777e6a8b.tar.gz nextcloud-server-b1f594d5557521703f52e152649a541c777e6a8b.zip |
Fix replacing external storage password during debug log
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Authentication/LoginCredentials/Store.php | 2 |
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]); |