diff options
author | Patrick Fischer <mail@patrickfischer.ch> | 2023-11-06 14:51:13 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-11-10 15:59:14 +0000 |
commit | b79f58933b34eda3f5460bbd1832cdb78d485a46 (patch) | |
tree | 69e6d1041b2b667c5f514d8c4dd464d81c7512e6 | |
parent | 8e29b026aaa5ae9ca9a3ab85743097a37f9a3573 (diff) | |
download | nextcloud-server-b79f58933b34eda3f5460bbd1832cdb78d485a46.tar.gz nextcloud-server-b79f58933b34eda3f5460bbd1832cdb78d485a46.zip |
Lower log level about invalid session token
-rw-r--r-- | lib/private/User/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index ccc82085d2c..8b199ca74ae 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -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, |