Hello All,
I've managed to the remote logging with gwtp as described:
https://code.google.com/p/gwt-log/wiki/GettingStarted#Working_examples
The problem I'm having is with the init-param located in the servlet. I added the following code to my web.xml file: and get the following message:
WARNING: In order to enable stack trace deobfuscation, please specify the 'symbolMaps' <init-param> for the com.allen_sauer.gwt.log.server.RemoteLoggerServlet servlet in your web.xml
How should I specify this parameter?
Best Regards,
Maurice
<!--
The `symbolMaps` parameter specifies the server directory
containing the GWT compiler symbol maps output, which is used
for stack trace deobfuscation
-->
<init-param>
<!-- This value assumes a GWT compile with '-deploy war/WEB-INF/deploy/' -->
<param-name>symbolMaps</param-name>
<!--
Modify the param-value based on your server environment. Some web servers
use your `war` directory as the 'current working dir', while other
vendors will do something different. You may use trial and error. Specify the
relative path you think should work, then check the server log after forwarding
the first client log message to the server. If the directory cannot be found,
gwt-log will report the full path which it tried.
-->
<param-value>WEB-INF/deploy/your-module-name/symbolMaps/</param-value>
</init-param>