Set SAML errors to warning instead of error

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2021-03-17 22:30:26 -07:00
parent 069e9e52fe
commit 86fef3f40a

View file

@ -111,7 +111,7 @@ class LoginController extends Controller
Auth::login($user, true); Auth::login($user, true);
} else { } else {
$username = $saml->getUsername(); $username = $saml->getUsername();
Log::error("SAML user '$username' could not be found in database."); \Log::warning("SAML user '$username' could not be found in database.");
$request->session()->flash('error', trans('auth/message.signin.error')); $request->session()->flash('error', trans('auth/message.signin.error'));
$saml->clearData(); $saml->clearData();
} }
@ -121,7 +121,7 @@ class LoginController extends Controller
$user->save(); $user->save();
} }
} catch (\Exception $e) { } catch (\Exception $e) {
Log::error("There was an error authenticating the SAML user: " . $e->getMessage()); \Log::warning("There was an error authenticating the SAML user: " . $e->getMessage());
throw new \Exception($e->getMessage()); throw new \Exception($e->getMessage());
} }
} }