Slightly different failure message.

This commit is contained in:
James Cole 2020-08-11 23:52:27 +02:00
parent 6b5e4d34d5
commit f840de0b93
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -112,7 +112,7 @@ class LoginController extends Controller
// to login and redirect the user back to the login form. Of course, when this // to login and redirect the user back to the login form. Of course, when this
// user surpasses their maximum number of attempts they will get locked out. // user surpasses their maximum number of attempts they will get locked out.
$this->incrementLoginAttempts($request); $this->incrementLoginAttempts($request);
Log::channel('audit')->info(sprintf('Login attempt for user "%s" failed.', $request->get('email'))); Log::channel('audit')->info(sprintf('Login failed. Attempt for user "%s" failed.', $request->get('email')));
return $this->sendFailedLoginResponse($request); return $this->sendFailedLoginResponse($request);
} }