3
votes

I am working on an Google Apps Script in a Google Sheets.

Yesterday I could see all executions of the script, trace errors, and see the result of all Logger.log lines in the Stackdriver logs in the Apps Script Dashboard. However, nothing was logged in the "Logs" (accessed via Ctrl+Enter).

Today, I get no information in neither the Dashboard or the Logs when I run my script. I have made sure that there are no filters active in the Dashboard.

Does anyone know that is going on?

1
How about console.log()?TheMaster
Is this happening for all projects or just one specific project?Rafa Guillermo
Added a console.log line to the code and now I can see that and the logger.log calls in the stackdriver. However, it feels a bit random that it would have solved the problem and made all the logger.log calls as well. But I hope the issue stays away.Eva

1 Answers

-1
votes

There is probably an error happening before it gets to the Logger.log(). Revert back to Rhino from V8 (Run > Disable new Apps Script runtime...), if you need to, and look in View > Execution Transcript.