Merge pull request #41383 from nextcloud/backport/41302/stable27

[stable27] Lower log level about invalid session token
This commit is contained in:
Arthur Schiwon 2023-11-15 22:41:09 +01:00 committed by GitHub
commit ef70f798b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -781,7 +781,7 @@ class Session implements IUserSession, Emitter {
try {
$dbToken = $this->tokenProvider->getToken($token);
} catch (InvalidTokenException $ex) {
$this->logger->warning('Session token is invalid because it does not exist', [
$this->logger->debug('Session token is invalid because it does not exist', [
'app' => 'core',
'user' => $user,
'exception' => $ex,