mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #32846 from nextcloud/backport/32685/stable23
[stable23] Fix replacing external storage password during debug log
This commit is contained in:
commit
d41f5b4bdf
1 changed files with 1 additions and 1 deletions
|
|
@ -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]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue