Skip to content

Commit 7bbee72

Browse files
settings configuration keys for BJLS logging
1 parent d8f3659 commit 7bbee72

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions/cache@v2
3333
with:
3434
path: |
35-
./bazel-vscode-0.0.4.vsix
35+
./bazel-vscode-0.0.5.vsix
3636
key: ${{ env.cache-name }}-${{ github.run_id }}
3737
publish:
3838
needs: [build]
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- uses: actions/cache@v2
4343
with:
44-
path: ./bazel-vscode-0.0.4.vsix
44+
path: ./bazel-vscode-0.0.5.vsix
4545
key: ${{ env.cache-name }}-${{ github.run_id }}
4646
- name: Create tag
4747
if: contains(github.ref, 'master')
@@ -67,8 +67,8 @@ jobs:
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6868
with:
6969
upload_url: ${{ steps.create_release.outputs.upload_url }}
70-
asset_path: ./bazel-vscode-0.0.4.vsix
71-
asset_name: bazel-vscode-0.0.4.vsix
70+
asset_path: ./bazel-vscode-0.0.5.vsix
71+
asset_name: bazel-vscode-0.0.5.vsix
7272
asset_content_type: application/octet-stream
7373
- name: Publish Release
7474
if: contains(github.ref, 'master')

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "salesforce",
55
"repository": "https://github.com/salesforce/bazel-vscode",
66
"description": "bazel-vscode",
7-
"version": "0.0.4",
7+
"version": "0.0.5",
88
"engines": {
99
"vscode": "^1.46.0"
1010
},
@@ -29,6 +29,30 @@
2929
".*\\.bazelproject$",
3030
".*\\.java$"
3131
],
32+
"configuration": {
33+
"title": "BJLS",
34+
"properties": {
35+
"java.import.bazel.enabled": {
36+
"type": "boolean",
37+
"default": true,
38+
"description": "Enable/disable the Bazel importer.",
39+
"scope": "window"
40+
},
41+
"java.bjls.log.level": {
42+
"type": "string",
43+
"enum": ["debug", "warn", "info", "error"],
44+
"default": "info",
45+
"description": "The severity of logging messages (debug, warn, info, error)",
46+
"scope": "window"
47+
},
48+
"java.bjls.log.extended": {
49+
"type": "boolean",
50+
"default": true,
51+
"description": "Enable/disable the extended logging into <user_home>/bef.log file.",
52+
"scope": "window"
53+
}
54+
}
55+
},
3256
"commands": [
3357
{
3458
"command": "bazelimport.menus.viewtitle",

0 commit comments

Comments
 (0)