From d3830a44d84e4bb2d8e7eb33d1f9e3c48964b1dc Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 10 May 2022 12:40:50 -0700 Subject: [PATCH] Added more verbose messaging Signed-off-by: snipe --- app/Services/Saml.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Saml.php b/app/Services/Saml.php index dc46a0b920..3000233cea 100644 --- a/app/Services/Saml.php +++ b/app/Services/Saml.php @@ -134,7 +134,7 @@ class Saml try { $this->_auth = new OneLogin_Saml2_Auth($this->_settings); } catch (Exception $e) { - \Log::debug('Trying OneLogin_Saml2_Auth failed - exception thrown. Setting SAML enabled to false.'); + \Log::debug('Trying OneLogin_Saml2_Auth failed - exception thrown. Setting SAML enabled to false.'. $e->getMessage()); $this->_enabled = false; } }