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 authored and backportbot-nextcloud[bot] committed Nov 10, 2023
1 parent 8e29b02 commit b79f589
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 b79f589

Please sign in to comment.