I think log4j is bundled with Tomcat. If tomcat is logging anything
at all, like its own startup, then the problem is not that you have
not installed log4j. More likely the problem is that your application
is throwing an unchecked exception which is percolating up into the
GWT RPC layer, where it cannot be serialized and so is not sent to the
client. Try surrounding your entire service call with a 'try..catch
Exception' block and use printStackTrace(), which will go to STDOUT,
which Tomcat logging will grab and throw into its log.
Walden