Skip to content

Commit

Permalink
Merge pull request #32685 from nextcloud/fix/external-storage-passwor…
Browse files Browse the repository at this point in the history
…d-replacement

Fix replacing external storage password during debug log
  • Loading branch information
PVince81 authored Jun 10, 2022
2 parents 42d480c + 90c31cf commit 79f8356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Authentication/LoginCredentials/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function getLoginCredentials(): ICredentials {
} 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]);
Expand Down

0 comments on commit 79f8356

Please sign in to comment.