File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " uroborosql-fmt " : patch
3+ ---
4+
5+ Modify server log message
Original file line number Diff line number Diff line change @@ -238,11 +238,13 @@ async function formatText(
238238 // settings specified by vscode ui
239239 const specifiedSettings = getVSCodeOptions ( settings , workspaceFolder ) ;
240240 const settingsString = specifiedSettings
241- ? JSON . stringify ( specifiedSettings )
241+ ? JSON . stringify ( specifiedSettings , null , 2 )
242242 : "{}" ;
243- console . log ( settingsString ) ;
244243 const changes : TextEdit [ ] = [ ] ;
245244
245+ console . log ( "VSCode settings:" , settingsString ) ;
246+ console . log ( "settings path:" , configPath ?. toString ( ) ) ;
247+
246248 // 全ての選択範囲に対して実行
247249 for ( const selection of selections ) {
248250 // テキストを取得
You can’t perform that action at this time.
0 commit comments