diff --git a/src/github/githubRepository.ts b/src/github/githubRepository.ts index 4d1dc6a7df..835c83a9cf 100644 --- a/src/github/githubRepository.ts +++ b/src/github/githubRepository.ts @@ -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(query); @@ -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; }; @@ -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(mutation); @@ -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; };