Explorar el Código

fix(session): Log why session renewal failed

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v28.0.0beta1
Christoph Wurst hace 7 meses
padre
commit
4f183bb604
No account linked to committer's email address
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2
    1
      lib/private/User/Session.php

+ 2
- 1
lib/private/User/Session.php Ver fichero

@@ -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;
}

Cargando…
Cancelar
Guardar