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 8c5b281 commit 5251169Copy full SHA for 5251169
src/schema-to-typescript/common/core/common-http-client.ts
@@ -806,7 +806,7 @@ export class CommonHttpClient {
806
this.options,
807
this.options.formatHttpErrorMessage
808
? this.options.formatHttpErrorMessage(fetchResponse, fetchRequest)
809
- : `HTTP Error ${fetchResponse.status} (${fetchResponse.statusText})`
+ : `HTTP Error ${request.method} ${url.toString()} ${fetchResponse.status} (${fetchResponse.statusText})`
810
);
811
}
812
return fetchResponse;
0 commit comments