Home > Mobile >  Show logs of the application deployed on Cloud Run
Show logs of the application deployed on Cloud Run

Time:10-07

Is there any way to see logs.I mean I am able to see logs in log section in cloud run It only show me http log or show me the response(like 403 etc) but does not show me the response like (invalid current password etc.) of error. I see there is --log-driver gcplogs option but don't know where to configure it I mean its a serverless container so not running any docker run command

CodePudding user response:

Google Cloud Logging captures stdout and stderr of services (containers) deployed to Google Cloud Run.

You should be able to view these logs either through the the Cloud Console's Logs Viewer (enter image description here

  • Related