File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -216,8 +216,8 @@ let compilerLogsWatcher = chokidar
216
216
stabilityThreshold : 1 ,
217
217
} ,
218
218
} )
219
- . on ( "all" , ( _e , changedPath ) => {
220
- console . log ( "changes in path: " , changedPath ) ;
219
+ . on ( "all" , ( eventName , changedPath , stats ) => {
220
+ console . log ( eventName , changedPath , stats ) ;
221
221
if ( changedPath . includes ( "build.ninja" ) ) {
222
222
if ( config . extensionConfiguration . cache ?. projectConfig ?. enable === true ) {
223
223
console . log ( "Changed path includes build ninja" ) ;
@@ -231,6 +231,7 @@ let compilerLogsWatcher = chokidar
231
231
try {
232
232
console . log ( "Send updated diagnostics" ) ;
233
233
sendUpdatedDiagnostics ( ) ;
234
+ console . log ( "Send compilation finished message" ) ;
234
235
sendCompilationFinishedMessage ( ) ;
235
236
if ( config . extensionConfiguration . inlayHints ?. enable === true ) {
236
237
sendInlayHintsRefresh ( ) ;
You can’t perform that action at this time.
0 commit comments