Re: disabling logs on myfaces

2006-03-30 Thread Eduardo Dudu Ivan Pichler
Thanks. I solve my problema, there was an little error on log4j.xml[]'sOn 3/30/06, Mert Çalışkan <[EMAIL PROTECTED] > wrote:xml file can be anywhere in your classpath.   But you have to choose between log4j api or sun's logging in jdk. log4j.jar should also be in the classpath with commons-loggi

RE: disabling logs on myfaces

2006-03-30 Thread Brian Woolf
in context: http://www.nabble.com/disabling-logs-on-myfaces-t1351076.html#a3671092 Sent from the MyFaces - Users forum at Nabble.com.

Re: disabling logs on myfaces

2006-03-30 Thread Mert Çalışkan
xml file can be anywhere in your classpath.   But you have to choose between log4j api or sun's logging in jdk. log4j.jar should also be in the classpath with commons-logging.jar if you choose it. log4j.xml has usage precedence over the properties file.   you can also give a VM argument for the

RE: disabling logs on myfaces

2006-03-28 Thread Lance Frohman
What is in your log4j.properties? You have some setting in it to show the myfaces logs. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DuduSent: Monday, March 27, 2006 10:57 AMTo: MyFaces Official ListSubject: disabling logs on myfaces I have a log4j.properties file, but

Re: disabling logs on myfaces

2006-03-28 Thread Mert Çalışkan
You can define a log4j.xml in your classpath i definitely suggest you to use commons-logging. Here is an example log4j.xml. You can define multiple loggers with different package names. By this you can discriminate your application ( tr.yourpackagename) log. You can also add other appenders.   ht

disabling logs on myfaces

2006-03-27 Thread Dudu
I have a log4j.properties file, but I want it only to logs generated by my application...How can I do this... the better way... are there a way to disable the logs of myfaces, in the web.xml???Thanks