On Tue, Aug 27, 2013 at 3:42 PM, <[email protected]> wrote: > Does anyone knows if there is a way to watch my applications logs running > in a "terminal style" without having to refresh it all the time threw the > admin console ? > An external service that downloads the diff of the logs every second and > then shows it would also be welcomed. >
I don't know of any application that downloads logs "terminal style," but it's easy enough to build a service that emulates the effect. Use the Logging API ( https://developers.google.com/appengine/docs/java/logs/ ) to repeatedly extract the last few minutes of logs, print them out through a channel ( https://developers.google.com/appengine/docs/java/channel/ ) and display them on a web page. Alternately if you want to watch application logs through a custom client-based application, you can use the Remote API to access your application's services, then use the logging API to access the logs. Then you can use the basic System.out stream to print logs out to the console. ----------------- -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.
