]> source.dussan.org Git - nextcloud-server.git/commitdiff
Log why the login token can't be used for credentials 31979/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Mon, 4 Apr 2022 14:23:05 +0000 (16:23 +0200)
committerblizzz (Rebase PR Action) <blizzz@users.noreply.github.com>
Thu, 19 May 2022 13:03:07 +0000 (13:03 +0000)
And always pass the exception object to the logger.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/private/Authentication/LoginCredentials/Store.php

index 1810732ac3ad839f8067c1e61ce4fa190742cfd8..d7749f98dee4899861374da019ff72f7d3d7ce38 100644 (file)
@@ -99,12 +99,12 @@ class Store implements IStore {
 
                        return new Credentials($uid, $user, $password);
                } catch (SessionNotAvailableException $ex) {
-                       $this->logger->debug('could not get login credentials because session is unavailable', ['app' => 'core']);
+                       $this->logger->debug('could not get login credentials because session is unavailable', ['app' => 'core', 'exception' => $ex]);
                } catch (InvalidTokenException $ex) {
-                       $this->logger->debug('could not get login credentials because the token is invalid', ['app' => 'core']);
+                       $this->logger->debug('could not get login credentials because the token is invalid: ' . $ex->getMessage(), ['app' => 'core', 'exception' => $ex]);
                        $trySession = true;
                } catch (PasswordlessTokenException $ex) {
-                       $this->logger->debug('could not get login credentials because the token has no password', ['app' => 'core']);
+                       $this->logger->debug('could not get login credentials because the token has no password', ['app' => 'core', 'exception' => $ex]);
                        $trySession = true;
                }