[google-appengine] Re: Email paradigm for Logs

2009-10-11 Thread Roy Smith
I run all my logging through a custom Class which duplicates each log message out on XMPP. That way I can debug in real time. It only does the session is a nominated test user so I don;t get inundated with log IMs from production users. On Mon, Oct 12, 2009 at 5:09 AM, Mike wrote: > > I've noti

[google-appengine] Re: Email paradigm for Logs

2009-10-11 Thread Andrew Chilton
Hi Roy, 2009/10/12 Roy Smith : > I run all my logging through a custom Class which duplicates each log > message out on XMPP. That way I can debug in real time. > It only does the session is a nominated test user so I don;t get inundated > with log IMs from production users. Sounds like a nice e

[google-appengine] Re: Email paradigm for Logs

2009-10-11 Thread Roy Smith
I've pasted the key, XMPP-related bits below. There really isn't very much to it :-) Where my app would have called Logger.getLogger(LOGNAME).log(Level.SEVERE, "some logging string"); it now calls MyLog.severe("some logging string"); import com.google.appengine.api.xmpp.JID; import com.goog