Skip to content

Commit d4e4523

Browse files
Update extensions/src/utils/httpClient.ts
Co-authored-by: kaizen-bot[bot] <150987473+kaizen-bot[bot]@users.noreply.github.com>
1 parent d8c09ac commit d4e4523

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/src/utils/httpClient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export class HttpClient {
22
public async sendRequest(url: string, method: string, headers: Record<string, string>, body?: string | FormData) {
33
console.log("Request sent from https client");
4-
console.log("Sending Request:", { url, method, headers, body });
4+
console.log('Sending Request:',{url, method}); // Exclude headers and body from logs
55

66
try {
77
const options: RequestInit = {

0 commit comments

Comments
 (0)