From 48e7c75a993fd2bc1fe7dd1b443dcedc35730b9d Mon Sep 17 00:00:00 2001 From: Christian Abella Date: Tue, 25 Feb 2025 17:16:00 -1000 Subject: [PATCH] AXON-137: add logger --- src/views/jira/customJqlExplorer/customJqlViewProvider.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/jira/customJqlExplorer/customJqlViewProvider.ts b/src/views/jira/customJqlExplorer/customJqlViewProvider.ts index c3fea226..75a71ad9 100644 --- a/src/views/jira/customJqlExplorer/customJqlViewProvider.ts +++ b/src/views/jira/customJqlExplorer/customJqlViewProvider.ts @@ -9,6 +9,7 @@ import { CONFIGURE_JQL_STRING, CUSTOM_JQL_VIEW_PROVIDER_ID } from './constants'; import { MinimalORIssueLink } from '@atlassianlabs/jira-pi-common-models'; import { Disposable, window } from 'vscode'; import { SearchJiraIssuesNode } from '../searchJiraIssueNode'; +import { Logger } from '../../../logger'; const searchJiraIssuesNode = new SearchJiraIssuesNode(); @@ -71,7 +72,7 @@ export class CustomJQLViewProvider extends BaseTreeDataProvider { this._jqlEntries.map(async (jql: JQLEntry) => { const childTree = new CustomJQLTree(jql); const flattenedIssueList = await childTree.executeQuery().catch((e) => { - // Logger.error(new Error(`Error executing JQL: ${e}`)); + Logger.error(new Error(`Error executing JQL: ${e}`)); return []; }); childTree.setNumIssues(flattenedIssueList.length);