Reputation: 407
Before I get into the details, please note:
My issue is I can’t get server-side debugging to work. I’ve now tried all of the following to no avail:
meteor debug
and launching Node Inspector (it hooks into my Meteor instance but doesn’t log anything server side or hit any breakpoints I've set using debugging;
statements in the code, code execution was not suspended)putting console.log()
statements all over the place. Nothing would get printed, breakpoints wouldn’t be hitmeteor shell
and trying to see logging thereUpvotes: 0
Views: 225
Reputation: 407
WS 11.0.2 definitely broke this. Although not listed on JetBrains' website, typing in the download executable URL for WS 11.0.1 by hand (http://download.jetbrains.com/webstorm/WebStorm-11.0.1.exe) allowed me to get back to the previous minor version. After installing 11.0.1, I am able to debug my code in the WebStorm IDE, set and hit breakpoints and see server-side logging.
Upvotes: 1