Skip to content

Commit

Permalink
feat: remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
SnykOleg committed Mar 28, 2024
1 parent f7dd602 commit a5be724
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/api/SnykApiClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export class SnykApiClient implements SnykApi {
headers,
method,
};
console.log(requestInit)
const resp = await this.fetchApi.fetch(path, requestInit);
if (!resp.ok) {
throw await ResponseError.fromResponse(resp);
Expand Down Expand Up @@ -434,7 +433,6 @@ export class SnykApiClient implements SnykApi {
const targetsAPIUrl = `${backendBaseUrl}/rest/orgs/${orgId}/targets?displayName=${encodeURIComponent(
targetIdentifier
)}&version=${version}`;
console.log("targetsAPIUrl", targetsAPIUrl);
const targetResponse = await this.fetch(`${targetsAPIUrl}`, "GET", true);
if (targetResponse.status >= 400 && targetResponse.status < 600) {
throw new Error(
Expand Down

0 comments on commit a5be724

Please sign in to comment.