Hi,

If you use the SimpleRemoteLogHandler, you have to add an URL mapping in
your web.xml

    <servlet>
        <servlet-name>remoteLogging</servlet-name>

<servlet-class>com.google.gwt.logging.server.RemoteLoggingServiceImpl</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>remoteLogging</servlet-name>
        <url-pattern>/YOUR_MODULE/remote_logging</url-pattern>
    </servlet-mapping>

Alexandre


2011/9/17 Mike <[email protected]>

> I'm attempting to use remote logging as described in
>
> http://code.google.com/webtoolkit/doc/latest/DevGuideLogging.html#Remote_Logging
>
> I'm using a very simple test app based on the Greeting example.  It
> appears to work in the Eclipse hosted mode, but when I deploy to
> Tomcat6 I see nothing in the logs.  A network trace shows that the
> HTTP flows are working as desired, so this leads me to think that it
> somehow a Tomcat configuration.   The Firebug console shows that
> things appear to be working.
>
> I'm trying to a FINE level message.  Do I need some kind of logging
> config file someplace?  Do I need to sure the common loggings library
> is accessible to Tomcat?
>
> Any suggestions will be greatly appreciated.
>
> Thanks,
>
> Mike
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

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

Reply via email to