Skip to content

Commit

Permalink
log as error instead
Browse files Browse the repository at this point in the history
  • Loading branch information
vd1992 committed Dec 20, 2023
1 parent f91b051 commit 049508b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/app/Http/Controllers/AuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
});

Expand Down

0 comments on commit 049508b

Please sign in to comment.