From info to debug

This commit is contained in:
James Cole
2024-01-09 21:04:12 +01:00
parent b9f0682f04
commit 717f3a9e3d

View File

@@ -78,7 +78,7 @@ class LoginController extends Controller
public function login(Request $request): JsonResponse|RedirectResponse
{
Log::channel('audit')->info(sprintf('User is trying to login using "%s"', $request->get($this->username())));
app('log')->info('User is trying to login.');
app('log')->debug('User is trying to login.');
$this->validateLogin($request);
app('log')->debug('Login data is present.');