1

I deployed my Google App Script Webapp with the optionen execute the app as: User accessing the web app.

In the App Script Dashboard I can see the executions of the webapp and the logging. However I only see the logging when I (the owner of the app) executes it. When another user executes the webapp I only see the executions but I can not see the logging int the App Script Dashboard.

How can I also see the logging of the app independent of the user executing it?

TheMaster
  • 37,620
  • 6
  • 43
  • 68
zlZimon
  • 1,914
  • 2
  • 18
  • 35

2 Answers2

2

You have two ways of seeing the executions:

  • Allow the other users to edit the script (if it is on developing mode), then you will be able to see all the executions from the Apps Script Dashboard.
  • You can link the script to a GCP project, and then you will be able to see the executions from the GCP Logs viewer. You can enter the GCP logs viewer from the script: View -> Stackdriver Logging
Kessy
  • 1,601
  • 1
  • 7
  • 15
1

The issue is reported here. Consider adding a star (on the top left) for Google developers to prioritize the issue.


In the mean time, As mentioned in the previous answer, Switching GCP should work:

TheMaster
  • 37,620
  • 6
  • 43
  • 68