We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b406555 commit a13150cCopy full SHA for a13150c
1 file changed
lib/Controller/LoginController.php
@@ -190,6 +190,7 @@ public function login(int $providerId, ?string $redirectUrl = null) {
190
191
$state = $this->random->generate(32, ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_UPPER);
192
$this->session->set(self::STATE, $state);
193
+ $this->logger->debug('Storing OIDC state', ['state' => $state]);
194
$this->session->set(self::REDIRECT_AFTER_LOGIN, $redirectUrl);
195
196
$nonce = $this->random->generate(32, ISecureRandom::CHAR_DIGITS . ISecureRandom::CHAR_UPPER);
0 commit comments