I am trying to debug JavaScript code in Chrome. I am using Google Apps Script. In my JavaScript code (which is definitely being ran) I put a debugging;
line because I can't simply find my code in the Source panel and put a break point on a line.
The only code files I can find in the Source panel are basically "garbage" machine style code. I cannot find the files for my app which is why I tried the debugger;
line in my actual source code. It appears that the program does halt at the point in time where I have a debugger;
line, but this is only represented in Chrome debugger by a pause, I can't actually view my code that it's hit on. (It should just jump to the code that it's stopped on) Instead it always shows some "userCodeAppPanel" which is just machine style code...
I find it nearly impossible to debug as a result without simply just using console.logs, which is just simply not enough for effective debugging.