Skip to content

Commit 728ad0a

Browse files
committed
More logs for issue #17
1 parent bf35e5d commit 728ad0a

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-jira-issue",
33
"name": "JiraIssue",
4-
"version": "1.21.1",
4+
"version": "1.21.2",
55
"minAppVersion": "0.12.0",
66
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
77
"author": "marc0l92",

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-jira-issue",
3-
"version": "1.21.1",
3+
"version": "1.21.2",
44
"description": "This plugin allows you to track the progress of [Atlassian Jira](https://www.atlassian.com/software/jira) issues from your [Obsidian](https://obsidian.md/) notes.",
55
"main": "src/main.js",
66
"scripts": {
@@ -38,4 +38,4 @@
3838
"@codemirror/view": "^0.20.6",
3939
"@lezer/common": "^0.16.0"
4040
}
41-
}
41+
}

src/client/jiraClient.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ export class JiraClient {
3434
private async sendRequest(options: RequestUrlParam): Promise<any> {
3535
let response: RequestUrlResponse
3636
try {
37-
// console.info('request', options)
37+
console.info('request', options)
3838
response = await requestUrl(options)
3939
} catch (e) {
4040
console.error('JiraClient::response', e)
4141
throw new Error('Request error')
4242
}
43-
// console.info('response', response)
43+
console.info('response', response)
4444

4545
if (response.status !== 200) {
4646
console.error('jiraClient error response:', response)

versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
"1.19.0": "0.12.0",
2121
"1.20.0": "0.12.0",
2222
"1.21.0": "0.12.0",
23-
"1.21.1": "0.12.0"
23+
"1.21.1": "0.12.0",
24+
"1.21.2": "0.12.0"
2425
}

0 commit comments

Comments
 (0)