I'm attempting to rewrite an add-in that was made back in 2001. While attempting to do so, I've run into what I can only call "a bit of a snag". I've been following the Excel API documentation and using Visual Studio 2019. I'm able to run the add-in just fine. Hitting run in VS opens up an instance of Excel, side loads the add-in and attaches to the processes to begin debugging.
However I cannot for the life of me figure out how to get the output from the console.log()
calls that are in the add-in. I'm able to get them by using the Microsoft Edge Devtools Preview, but it makes no sense to me why I shouldn't be able to see the output in VS when it's already watching those processes. I attempted the fixes mentioned in this article but came out empty handed. I've started Excel and the add-in by itself then attached the processes that way, and still no logs.
I've also seen another article that mentions going to something like hitting CTRL+Q and then searching for Javascript Console which comes back with nothing. I'm really out of ideas at this point.