On Mon, Aug 12, 2013 at 1:11 AM, Will Pittenger <[email protected]>wrote:
> I've been tasked with accessing our application's logs from our regression > testing program which is based on Selenium and its FirefoxDriver. This > application won't be running on the server, but on a client. Will it be > able to retrieve the logs via an API? > Yes. You can install the Remote API on your application ( https://developers.google.com/appengine/docs/java/tools/remoteapi ), which allows you access to your app's GAE services from another computer (for example, your local computer, build server, another App Engine application, etc). Then you can use the Logs API ( https://developers.google.com/appengine/docs/java/logs/ ) to search through the logs and retrieve the stored information. You can also use appcfg to download logs: see https://developers.google.com/appengine/docs/java/tools/uploadinganapp#Downloading_Logs ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
