Reputation: 11
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
Reputation: 12721
Try:
$./appcfg.sh request_logs /path/to/your/appengine/project mylogs.txt
Upvotes: 0
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