]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix unsuccessful token login logged as error 35012/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 7 Nov 2022 14:08:48 +0000 (15:08 +0100)
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>
Mon, 7 Nov 2022 17:52:13 +0000 (17:52 +0000)
The condition of a non-existent login token can happen for concurrent
requests. Admins can not do anything about this. So this is to be
expected to happen occasionally. This event is only bad if none of the
requests is able to re-acquire a session. Luckily this happens rarely.

If a login loop persists an admin can still lower the log level to find
this info. But a default error log level will no longer write those
infos about the failed cookie login of one request.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/private/User/Session.php

index 302f6174bc913f5cfc611a8f5693db3511975e4a..522adaf112973c2919ae53d2b022afa4e05daf7e 100644 (file)
@@ -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,
                        ]);