From f4650c65db272ee6f724e28dfe62e45ff6f4ff02 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 10 May 2022 13:00:48 -0700 Subject: [PATCH] Clearer phrasing for log 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 3000233cea..f947e432bf 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.'. $e->getMessage()); + \Log::error('Trying OneLogin_Saml2_Auth failed. Setting SAML enabled to false. OneLogin_Saml2_Auth error message is: '. $e->getMessage()); $this->_enabled = false; } }