Re: T5: How to configure T5 not to display unwanted log

2008-03-13 Thread Adam Zimowski
One way to do this is with the log4j filter. You can write your own filter to do anything you want, but mine simply silently drops Tapestry logs. public class Log4jFilter extends Filter { private String[] _prefix; private boolean _convertToLowerCase = false;

Re: T5: How to configure T5 not to display unwanted log

2008-03-13 Thread Filip S. Adamsen
I think Conditional was renamed to If at some point. -Filip Andy Pahne skrev: Quite interesting to know how to achieve the same with T4. My log is full of: 2008-03-13 12:23:28,953 WARN [http-8080-Processor24] (ComponentSpecificationResolverImpl.java:113) - Component 'Conditional' (at class

Re: T5: How to configure T5 not to display unwanted log

2008-03-13 Thread Andy Pahne
Quite interesting to know how to achieve the same with T4. My log is full of: 2008-03-13 12:23:28,953 WARN [http-8080-Processor24] (ComponentSpecificationResolverImpl.java:113) - Component 'Conditional' (at classpath:/componentFactory/border/Border.jwc, line 78, column 58) is deprecated, and

T5: How to configure T5 not to display unwanted log

2008-03-13 Thread Joshua Jackson
Dear all, Currently I am using T 5.0.11 and it displays a helluva message in the logs. Is there any way to configure not to display those messages? I already configured in log4j.properties the log level for org.apache.tapestry to ERROR, but it is no good. Can anyone give me a hint on this? Thanks