Log output of my RemoteServiceServlet (GWT) is not shown in Logfiles or Stdout when using getServletContext().log("anything");

For dependency injection I use Google Guice. For my own log output I use slf4j-jdk14. I tried this in Tomcat 6 as well as in Jetty (GWT devmode).

To make it clear, my Servlet:

@Singleton
public class MyServiceServlet extends RemoteServiceServlet implements MyService {

    private static final Logger log = LoggerFactory.getLogger(MyServiceServlet.class);
    private final ADependency dep;

    @Inject
    public MyServiceServlet(ADependency dep) {
        getServletContext().log("THIS IS NOT SHOWN IN MY LOGS");
        log.error("THIS IS SHOWN IN MY LOGS");
        this.dep = dep;
    }
}

So, where can I find the missing log output or where can I configure the ServletContext-Log?

link|improve this question

56% accept rate
note: it's very easy to reproduce this: just create a GWT app with "mvn archetype:generate", choose "241: remote -> gwt-maven-plugin", replace the return in greetServer(String) with "throw new ..." and start the app with "mvn clean install gwt:run". The client shows an error, but there is no log output on the server. – Ethan Leroy Apr 8 '11 at 22:58
ok... I just created a new webapp with just a servlet and nothing else. I deployed it in tomcat and found the log output in localhost.2011-04-09.log. – Ethan Leroy Apr 9 '11 at 0:25
java.util.logging, slf4j, log4j, ServletContext.log(), commons.logging, ... I just want to see all errors in a single file! – Ethan Leroy Apr 9 '11 at 0:42
Did you ever resolve your issues? – Spencer Kormos Feb 10 at 16:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.