We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8c09ac commit d4e4523Copy full SHA for d4e4523
extensions/src/utils/httpClient.ts
@@ -1,7 +1,7 @@
1
export class HttpClient {
2
public async sendRequest(url: string, method: string, headers: Record<string, string>, body?: string | FormData) {
3
console.log("Request sent from https client");
4
- console.log("Sending Request:", { url, method, headers, body });
+console.log('Sending Request:',{url, method}); // Exclude headers and body from logs
5
6
try {
7
const options: RequestInit = {
0 commit comments