user1619378
user1619378

Reputation: 11

Getting Logs from Google App Engine Application deployed on Google app-spot from Ubuntu

How can I get the logs for my application deployed on Google app-spot through Ubuntu Terminal. I have tried the command in the shell script:

$./appcfg.sh request_logs mylogs.txt

but it says that bad-arguments. The application ID for my application deployed on app-spot is 'vikastest111'.

Please help.

Thanks in Advance.

Upvotes: 0

Views: 587

Answers (2)

Haldean Brown
Haldean Brown

Reputation: 12721

Try:

$./appcfg.sh request_logs /path/to/your/appengine/project mylogs.txt

Upvotes: 0

Tim Hoffman
Tim Hoffman

Reputation: 12986

where is appcfg.sh coming from ? Its not part of the google_appengine distribution.

The standard usage for appcfg.py is Usage: appcfg.py [options] request_logs <directory> <output_file>

where directory is where you app.yaml is located .

To get specific help for a command do

python ~/google_appengine/appcfg.py request_logs --help

Upvotes: 1

Related Questions