File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 624624 "type" : " boolean" ,
625625 "default" : true ,
626626 "description" : " Show `Debug this method` action for ClassMethods"
627+ },
628+ "objectscript.studioActionDebugOutput" : {
629+ "type" : " boolean" ,
630+ "default" : false ,
631+ "description" : " Output the action that VSCode should perform as requested by the server in JSON format."
627632 }
628633 }
629634 },
Original file line number Diff line number Diff line change @@ -45,7 +45,9 @@ class StudioActions {
4545 outputChannel . appendLine ( errorText ) ;
4646 outputChannel . show ( ) ;
4747 }
48- // outputChannel.appendLine(JSON.stringify(userAction));
48+ if ( config ( ) . studioActionDebugOutput ) {
49+ outputChannel . appendLine ( JSON . stringify ( userAction ) ) ;
50+ }
4951 switch ( serverAction ) {
5052 case 0 :
5153 /// do nothing
You can’t perform that action at this time.
0 commit comments