Skip to content

Commit

Permalink
Lower log level about invalid session token
Browse files Browse the repository at this point in the history
  • Loading branch information
zero0cool0 committed Nov 6, 2023
1 parent 81a9e19 commit b210355
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 @@ -783,7 +783,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 b210355

Please sign in to comment.