mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #35011 from nextcloud/backport/35007/stable25
[stable25] Fix unsuccessful token login logged as error
This commit is contained in:
commit
18515f6332
1 changed files with 1 additions and 1 deletions
|
|
@ -868,7 +868,7 @@ class Session implements IUserSession, Emitter {
|
|||
$tokens = $this->config->getUserKeys($uid, 'login_token');
|
||||
// test cookies token against stored tokens
|
||||
if (!in_array($currentToken, $tokens, true)) {
|
||||
$this->logger->error('Tried to log in {uid} but could not verify token', [
|
||||
$this->logger->info('Tried to log in {uid} but could not verify token', [
|
||||
'app' => 'core',
|
||||
'uid' => $uid,
|
||||
]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue