Turning on debugging output
[Logo]
ICEsoft.org Forums: ICEfaces, ICEmobile, ICEpdf
[Search] Search   [Recent Topics] Recent Topics   [Groups] Home Page | www.icefaces.org  [Register] Register  [Login] Login 
Turning on debugging output  XML
Forum Index -> Tools
Author Message
cjdreyer


Joined: 29/01/2007 00:00:00
Messages: 10
Offline


Hi folks,

again I hope someone can help me. I wanted to get some debugging output from icefaces, so I enabled the log category in my JBOSS configuration by inserting the following section:

Code:
<category name="com.icesoft">
     <priority value="DEBUG"/>
 </category>


But even after doing so I get no debug output from ICEFaces. A quick look in the source code showed, that ICEFaces uses some logging facility. But why do I get no logging messages?

Thanx,

Christian

Christian Dreyer, EDV Anwendungsentwicklung

Peek&Cloppenburg, Mönckebergstraße 8, 20095 Hamburg
Internet: http://www.peek-und-cloppenburg.de
frank.ye

Joined: 26/10/2004 00:00:00
Messages: 709
Offline


Turning on debugging output, you could either using log4j or JDK logging from JDK. Please us know if you need detailed info.
[Email]
b100dian

Joined: 30/01/2007 00:00:00
Messages: 5
Offline


here's something I found: http://support.icesoft.com/jive/entry.jspa?entryID=641&categoryID=74

it seems to enable pretty much verbosity: just paste this in log4j.properties somewhere in your classpath:
Code:
log4j.rootLogger=WARN, A1
 #
 # Configuration for standard output ("catalina.out").
 #
 log4j.appender.A1=org.apache.log4j.ConsoleAppender
 log4j.appender.A1.layout=org.apache.log4j.PatternLayout
 #
 # Print the date in ISO 8601 format
 #
 log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n
 
 log4j.logger.org.apache=WARN
 log4j.logger.com.sun.faces=WARN
 log4j.logger.javax.faces=WARN
 log4j.logger.com.icesoft=WARN
 # To see server side updates being sent to the browser
 #log4j.logger.blocking.dom.update=DEBUG 
 log4j.logger.blocking.dom.update=WARN
 
 
Forum Index -> Tools
Go to:   
Powered by JForum 2.1.7ice © JForum Team