I spent some time fooling with logs before I realized that if you override:

  Servlet.init(ServletConfig config)

you must call this somewhere in your new init() method:

  super.init(config)

otherwise the servlet container's logs don't get turned on.

Reply via email to