We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04422ac commit 378b4d9Copy full SHA for 378b4d9
1 file changed
src/github/githubRepository.ts
@@ -256,6 +256,7 @@ export class GitHubRepository implements vscode.Disposable {
256
try {
257
rsp = await gql.query<T>(query);
258
} catch (e) {
259
+ Logger.error(`Error querying GraphQL API: ${e.message}`, GitHubRepository.ID);
260
if (legacyFallback) {
261
query.query = legacyFallback.query;
262
return this.query(query, ignoreSamlErrors);
0 commit comments