J'm deploing a project whit eclipse and icefaces but j can't
debug my java souce code with log4j ... all the trace is not
show on eclipse console and neither on tomcat log
it's very difficult find error when i can't see where is it
i've just deploy same project with eclipse and log4j and all works good but when j introduce icefaces the log/trace disappear
That's normal, iceFaces uses Apache commons-logging api and until you've piped it to a decent logging engine, like log4J, nothing will show up.
At the root of your src dir, create a file called "commons-logging.properties" that contains :
org.apache.commons.logging.Log org.apache.commons.logging.impl.Log4JLogger
Same folder, create a file called log4J.properties that contains for example :
log4j.rootLogger=INFO