File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
- node_modules /
1
+ node_modules /
2
+ .idea
3
+ * .iml
Original file line number Diff line number Diff line change @@ -31,8 +31,15 @@ const activate = context => {
31
31
32
32
api . headServer ( ( err ) => {
33
33
34
- if ( ! ! err ) return log ( 'connect FAIL' )
35
- log ( 'connected ' + JSON . stringify ( conn ) )
34
+ const connectionParameters = JSON . stringify (
35
+ Object . assign ( { } , conn , {
36
+ password : "***"
37
+ } ) ,
38
+ null ,
39
+ 4
40
+ ) ;
41
+ if ( ! ! err ) return log ( 'Connection FAILED: ' + connectionParameters )
42
+ log ( 'Connected ' + connectionParameters )
36
43
bar . set ( conn )
37
44
38
45
} )
Original file line number Diff line number Diff line change 2
2
"name" : " vscode-cos" ,
3
3
"displayName" : " Caché ObjectScript" ,
4
4
"description" : " Caché ObjectScript language support for Visual Studio Code" ,
5
- "version" : " 0.0.4 " ,
5
+ "version" : " 0.0.5 " ,
6
6
"icon" : " images/logo.png" ,
7
7
"categories" : [
8
8
" Languages" ,
You can’t perform that action at this time.
0 commit comments