File tree 1 file changed +3
-2
lines changed
arduino-ide-extension/src/node
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -197,9 +197,10 @@ export class SketchesServiceImpl implements SketchesService {
197
197
} ) ;
198
198
199
199
// TODO: no `await` for some reason this blocks the workspace root initialization on Windows inside a bundled electron app.
200
+ console . log ( `Starting to watch sketchbook at '${ sketchbookPath } '.` ) ;
200
201
watcher . start ( )
201
- . then ( ( ) => console . log ( `Initialized NSFW in sketchbook: '${ sketchbookPath } . Watching for sketch changes.` ) )
202
- . catch ( err => console . error ( `Failed to initialize NSFW in sketchbook '${ sketchbookPath } '. Cannot track sketch changes.` , err ) ) ;
202
+ . then ( ( ) => console . log ( `Initialized watcher in sketchbook: '${ sketchbookPath } . Watching for sketch changes.` ) )
203
+ . catch ( err => console . error ( `Failed to initialize watcher in sketchbook '${ sketchbookPath } '. Cannot track sketch changes.` , err ) ) ;
203
204
204
205
deferred . resolve ( sketches ) ;
205
206
this . sketchbooks . set ( sketchbookPath , sketches ) ;
You can’t perform that action at this time.
0 commit comments