We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fffc8f commit c7f392fCopy full SHA for c7f392f
README.md
@@ -107,12 +107,12 @@ try {
107
$request = $e->getRequest();
108
$url = $request->getUrl();
109
$params = serialize($request->getParams()->toArray());
110
- error_log('[API SERVER ERROR] Status Code: {$url} | Body: {$params}');
+ error_log("[API SERVER ERROR] Status Code: {$url} | Body: {$params}");
111
112
$response = $e->getResponse();
113
$code = $response->getStatusCode();
114
$body = $response->getBody();
115
- error_log('[API SERVER ERROR] Status Code: {$code} | Body: {$body}');
+ error_log("[API SERVER ERROR] Status Code: {$code} | Body: {$body}");
116
117
} catch (ClientErrorResponseException $e) {
118
// Handle the error
0 commit comments