Server logging on the client side?

2011-02-16 Thread Jon Britton
Hi,

Is there any way to display server-side logs on the client side?

Cheers,

Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Server logging on the client side?

2011-02-16 Thread ep
yes, gwt 2.1 introduced JUL support, so you can either use the built-
in java logging api or a 3rd party library like gwt-log, more doc to
find at http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuide.html

On 16 Feb., 11:12, Jon Britton 
wrote:
> Hi,
>
> Is there any way to display server-side logs on the client side?
>
> Cheers,
>
> Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Server logging on the client side?

2011-02-16 Thread Jon Britton
I am aware of the logging capabilities and have some client-side
logging already (using Java logging).  Unfortunately, the docs don't
mention whether logging from the server side can be shown on the
client side.

Cheers,

Jon

On Feb 16, 11:51 am, ep  wrote:
> yes, gwt 2.1 introduced JUL support, so you can either use the built-
> in java logging api or a 3rd party library like gwt-log, more doc to
> find athttp://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuide.html
>
> On 16 Feb., 11:12, Jon Britton 
> wrote:
>
>
>
>
>
>
>
> > Hi,
>
> > Is there any way to display server-side logs on the client side?
>
> > Cheers,
>
> > Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Server logging on the client side?

2011-02-16 Thread ep
no this kind of feature is not available. but its pretty low effort to
achieve this ( you have to write your own JUL appender to queue the
logrecords in the server and aonther logger on the client which
periodically pulls logrecords from the server via i.e. RPC mechanism)

On 16 Feb., 14:50, Jon Britton 
wrote:
> I am aware of the logging capabilities and have some client-side
> logging already (using Java logging).  Unfortunately, the docs don't
> mention whether logging from the server side can be shown on the
> client side.
>
> Cheers,
>
> Jon
>
> On Feb 16, 11:51 am, ep  wrote:
>
>
>
>
>
>
>
> > yes, gwt 2.1 introduced JUL support, so you can either use the built-
> > in java logging api or a 3rd party library like gwt-log, more doc to
> > find athttp://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuide.html
>
> > On 16 Feb., 11:12, Jon Britton 
> > wrote:
>
> > > Hi,
>
> > > Is there any way to display server-side logs on the client side?
>
> > > Cheers,
>
> > > Jon

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.