Skip to content

Commit

Permalink
Merge pull request #12188 from snipe/fixes/decrease_logging_for_saml_…
Browse files Browse the repository at this point in the history
…when_not_enabled

Removed extra logging case that was very noisy
  • Loading branch information
snipe committed Dec 15, 2022
2 parents 3e7975b + 1fe0bfe commit 29c2ff5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/Http/Controllers/Auth/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,7 @@ private function loginViaSaml(Request $request)
} else {

// Better logging
if (!$saml->isEnabled()) {
\Log::debug("SAML page requested, but SAML does not seem to enabled.");
} else {
if (empty($samlData)) {
\Log::debug("SAML page requested, but samlData seems empty.");
}
}
Expand Down

0 comments on commit 29c2ff5

Please sign in to comment.