mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
fix(session): Log why session renewal failed
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
bf1dbd33a7
commit
4f183bb604
1 changed files with 2 additions and 1 deletions
|
|
@ -916,9 +916,10 @@ class Session implements IUserSession, Emitter {
|
|||
]);
|
||||
return false;
|
||||
} catch (InvalidTokenException $ex) {
|
||||
$this->logger->error('Renewing session token failed', [
|
||||
$this->logger->error('Renewing session token failed: ' . $ex->getMessage(), [
|
||||
'app' => 'core',
|
||||
'user' => $uid,
|
||||
'exception' => $ex,
|
||||
]);
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue