mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 14:09:43 -08:00
Set SAML errors to warning instead of error
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
069e9e52fe
commit
86fef3f40a
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue