Skip to content

Commit

Permalink
Merge pull request #41383 from nextcloud/backport/41302/stable27
Browse files Browse the repository at this point in the history
[stable27] Lower log level about invalid session token
  • Loading branch information
blizzz authored Nov 15, 2023
2 parents 3374457 + b79f589 commit ef70f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/User/Session.php
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ private function validateToken($token, $user = null) {
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,
Expand Down

0 comments on commit ef70f79

Please sign in to comment.