Hi, I started a T5.1 app with maven archetype. I can use the Logger just as expected :
private static final Logger LOG = LoggerFactory.getLogger(AppModule.class); .... LOG.debug("Something") ... The logs get into the console of jetty as expected. But if I change the name of the filter in Web.xml from "app" to "anythingApp" like this: <filter> <filter-name>anythingApp </filter-name> <filter-class>org.apache.tapestry5.TapestryFilter</filter-class> </filter> <filter-mapping> <filter-name>anythingApp </filter-name> <url-pattern>/*</url-pattern> </filter-mapping> The logs just stop work and don't show up anymore... I'm just starting to digg into T5, and if you can give me some details why this happening, then great. Thank you, JP