Re: GWT Remote Logging message gets logged twice

2014-01-10 Thread sluettmann
No one that has any idea what to do about that issue? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To p

GWT Remote Logging message gets logged twice

2013-12-03 Thread sluettmann
Hello everybody, I'm fairly new to the google user group of gwt but i came across a very annoying problem while implementing gwt logging and cause I don't have any idea how to solve that I hope someone else from here has an idea. I implemented logging in our gwt application with log4j. I used "

Re: GWT Remote Logging - Logger Name replaced by logOnServer

2012-05-02 Thread Marco
Just had the same problem. Seems to be Issue 1930 As a (temporary) workaround I replaced the RemoteLoggingServiceUtil

Re: GWT remote Logging

2011-10-04 Thread Thomas Broyer
The servlet is already there, you just need to map it in your web.xml: http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/logging/server/RemoteLoggingServiceImpl.html -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group

GWT remote Logging

2011-10-04 Thread Raja Shekhar
Hi http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging As per the document, if i wish to have remoteLogging, do i need to write a servlet class remoteLoggingServlet? if so, could someone please provide me an example how it will look like? if not, what do i need to do

Re: GWT Remote Logging - Logger Name replaced by logOnServer

2011-08-15 Thread Wooi
I mean I expect something like this, net.xxx.client.Abc Test WARNING: blablabla and I forgot to mention that this happen when I try to log from client side. While I try to log from server side, it work fine. net.xxx.server.AbcDao Test WARNING: blablabla Anyone can help? Thank you. -- You recei

GWT Remote Logging - Logger Name replaced by logOnServer

2011-08-12 Thread Wooi
Below is the message I got from my apache server... com.google.gwt.logging.server.RemoteLoggingServiceUtil logOnServer WARNING: blablabla I try to check RemoteLoggingServiceUtil, seeing while my logger name is null it will replaced? This is my code... private static Logger log = Logger.getLogger(

Re: GWT remote logging

2011-05-25 Thread Dave
Adding a mapping to my web.xml made it work. Thanks a bunch! On May 25, 1:53 am, Alexandre Ardhuin wrote: > Have you add an URL mapping in your web.xml ? > >     >         remoteLogging > > com.google.gwt.logging.server.RemoteLoggingServiceImpl let-class> >     >     >         remoteLogging >

Re: GWT remote logging

2011-05-24 Thread Alexandre Ardhuin
Have you add an URL mapping in your web.xml ? remoteLogging com.google.gwt.logging.server.RemoteLoggingServiceImpl remoteLogging /YOUR_MODULE/remote_logging Alexandre 2011/5/24 Dave > I'm trying to Log a message to a server log. I found these > in

GWT remote logging

2011-05-24 Thread Dave
I'm trying to Log a message to a server log. I found these instructions: http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging In my GWT XML I have my code is: SimpleRemoteLogHandler remoteLog = new SimpleRemoteLogHandler(); remoteLog.publish(new LogRecord(Level.INFO