From 049508b4fbbe53e859513bb5f482d60368b65d02 Mon Sep 17 00:00:00 2001 From: vd1992 <40485260+vd1992@users.noreply.github.com> Date: Wed, 20 Dec 2023 11:05:31 -0700 Subject: [PATCH] log as error instead --- api/app/Http/Controllers/AuthController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/Http/Controllers/AuthController.php b/api/app/Http/Controllers/AuthController.php index ed4bca36fe6..7e7f2fdc738 100644 --- a/api/app/Http/Controllers/AuthController.php +++ b/api/app/Http/Controllers/AuthController.php @@ -83,7 +83,7 @@ public function authCallback(Request $request) 'redirect_uri' => config('oauth.redirect_uri'), 'code' => $request->code, ])->throw(function (Response $response, RequestException $e) { - Log::debug('Failed to get a response from POSTing to the token URI'); + Log::error('Failed to get a response from POSTing to the token URI'); Log::debug((string) $response->getBody()); });