Skip to content

Commit

Permalink
Remove very noisy graphql trace logging (#5451)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 authored Nov 8, 2023
1 parent b481cfc commit b45aca4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/github/githubRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ export class GitHubRepository implements vscode.Disposable {
} as any;
}

Logger.trace(`Request: ${JSON.stringify(query, null, 2)}`, GRAPHQL_COMPONENT_ID);
let rsp;
try {
rsp = await gql.query<T>(query);
Expand Down Expand Up @@ -266,7 +265,6 @@ export class GitHubRepository implements vscode.Disposable {
throw e;
}
}
Logger.trace(`Response: ${JSON.stringify(rsp, null, 2)}`, GRAPHQL_COMPONENT_ID);
return rsp;
};

Expand All @@ -282,7 +280,6 @@ export class GitHubRepository implements vscode.Disposable {
} as any;
}

Logger.trace(`Request: ${JSON.stringify(mutation, null, 2)}`, GRAPHQL_COMPONENT_ID);
let rsp;
try {
rsp = await gql.mutate<T>(mutation);
Expand All @@ -300,7 +297,6 @@ export class GitHubRepository implements vscode.Disposable {
}
throw e;
}
Logger.trace(`Response: ${JSON.stringify(rsp, null, 2)}`, GRAPHQL_COMPONENT_ID);
return rsp;
};

Expand Down

2 comments on commit b45aca4

@kibamo
Copy link

@kibamo kibamo commented on b45aca4 Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hello world

@kibamo
Copy link

@kibamo kibamo commented on b45aca4 Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sill we working on it

Please sign in to comment.