[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-03 Thread Fred Sauer
LGTM -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-03 Thread tobyr
LGTM http://gwt-code-reviews.appspot.com/725801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-03 Thread unnurg
http://gwt-code-reviews.appspot.com/725801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-03 Thread unnurg
http://gwt-code-reviews.appspot.com/725801/diff/12001/13004 File dev/core/src/com/google/gwt/dev/shell/GWTBridgeImpl.java (right): http://gwt-code-reviews.appspot.com/725801/diff/12001/13004#newcode26 dev/core/src/com/google/gwt/dev/shell/GWTBridgeImpl.java:26: protected static ThreadLocal uniqu

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-02 Thread tobyr
http://gwt-code-reviews.appspot.com/725801/diff/12001/13004 File dev/core/src/com/google/gwt/dev/shell/GWTBridgeImpl.java (right): http://gwt-code-reviews.appspot.com/725801/diff/12001/13004#newcode26 dev/core/src/com/google/gwt/dev/shell/GWTBridgeImpl.java:26: protected static ThreadLocal uniqu

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-02 Thread fredsa
LGTM http://gwt-code-reviews.appspot.com/725801/diff/12001/13006 File dev/core/src/com/google/gwt/dev/shell/rewrite/UseMirroredClasses.java (right): http://gwt-code-reviews.appspot.com/725801/diff/12001/13006#newcode43 dev/core/src/com/google/gwt/dev/shell/rewrite/UseMirroredClasses.java:43: {

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-08-01 Thread Scott Blum
Ah, that makes sense. Sorry, I don't understand the logging stuff very well, so my question was more naive than anything. :) -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread unnurg
http://gwt-code-reviews.appspot.com/725801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread unnurg
http://gwt-code-reviews.appspot.com/725801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Unnur Gretarsdottir
On Fri, Jul 30, 2010 at 4:01 PM, Unnur Gretarsdottir wrote: > On Fri, Jul 30, 2010 at 3:57 PM, Unnur Gretarsdottir > wrote: >> On Fri, Jul 30, 2010 at 3:51 PM, Unnur Gretarsdottir >> wrote: >>> >>> >>> On Fri, Jul 30, 2010 at 3:44 PM, Scott Blum wrote: Okay, taking this all together

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Unnur Gretarsdottir
On Fri, Jul 30, 2010 at 3:57 PM, Unnur Gretarsdottir wrote: > On Fri, Jul 30, 2010 at 3:51 PM, Unnur Gretarsdottir > wrote: >> >> >> On Fri, Jul 30, 2010 at 3:44 PM, Scott Blum wrote: >>> >>> Okay, taking this all together, I'm wondering if the following approach >>> works, or if there's a fla

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Unnur Gretarsdottir
On Fri, Jul 30, 2010 at 3:51 PM, Unnur Gretarsdottir wrote: > > > On Fri, Jul 30, 2010 at 3:44 PM, Scott Blum wrote: >> >> Okay, taking this all together, I'm wondering if the following approach >> works, or if there's a flaw in it: >> - Rewrite any calls that would utilize or return the default

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Unnur Gretarsdottir
On Fri, Jul 30, 2010 at 3:44 PM, Scott Blum wrote: > Okay, taking this all together, I'm wondering if the following approach > works, or if there's a flaw in it: > > - Rewrite any calls that would utilize or return the default LogManager. > (LogManager.getLogManager(), Logger.getLogger()). > > -

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Scott Blum
Okay, taking this all together, I'm wondering if the following approach works, or if there's a flaw in it: - Rewrite any calls that would utilize or return the default LogManager. (LogManager.getLogManager(), Logger.getLogger()). - Return your own subclass of LogManager instead, which would serv

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread Unnur Gretarsdottir
On Fri, Jul 30, 2010 at 2:39 PM, wrote: > All of the dev and GWT stuff LGTM. I don't really understand all the > nuances of the logging plumbing, though. You might want a second pair > of eyes, unless you're really confident in that part. > > Questions: > > 1) Why do you need to prefix the logg

[gwt-contrib] Re: Put in a new fix for DevMode logging that uses bytecode rewriting rather than swapping out (issue725801)

2010-07-30 Thread scottb
All of the dev and GWT stuff LGTM. I don't really understand all the nuances of the logging plumbing, though. You might want a second pair of eyes, unless you're really confident in that part. Questions: 1) Why do you need to prefix the logger name at all? If we've got our own LogManager in D