Wiki source code of Logging

Version 14.1 by Vincent Massol on 2013/02/27

Hide last authors
Manuel Smeria 12.2 1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
Silvia Macovei 4.1 4
Vincent Massol 8.1 5 = For XWiki 3.1 and beyond =
Vincent Massol 1.1 6
Manuel Smeria 12.2 7 Starting with version 3.1 XWiki logs using [[SLF4J>>http://www.slf4j.org/]]. By default XWiki is configured so that SLF4J uses [[Logback>>http://logback.qos.ch/]]. XWiki's Logback configuration is located in the ##[[WEB-INF/classes/logback.xml>>https://raw.github.com/xwiki/xwiki-platform/master/xwiki-platform-core/xwiki-platform-web/src/main/resources/logback.xml]]## file.
Vincent Massol 8.1 8
Manuel Smeria 12.2 9 XWiki is also configured by default so that any logs generated by 3rd part JARs used by XWiki (i.e. in the XWiki classpath at runtime) will automatically find their ways to the output defined by the Logback configuration file. This is active for Apache Commons Logging (JCL) and Log4J. This is achieved by using [[a SLF4J Bridge>>http://www.slf4j.org/legacy.html]] for both logging frameworks (it's the ##log4j-over-slf4j-*.jar## and ##jcl-over-slf4j-*.jar## files that provide this feature).
Vincent Massol 11.1 10
Silvia Macovei 4.1 11 {{info}}
Vincent Massol 13.1 12 By default XWiki is configured to log everything on the console only. Whether the console is captured by your Servlet Container or not depends on the container you use. For example Tomcat on unix will capture stdout and add logs to the ##tomcat/logs/catalina.out## file.
Silvia Macovei 4.1 13 {{/info}}
Vincent Massol 1.4 14
Vincent Massol 13.1 15 == Configuring Logging ==
Vincent Massol 1.1 16
Vincent Massol 14.1 17 There are various ways in which you can configure what to log.
18
Vincent Massol 13.1 19 === Manually ===
20
21 Simply edit the Logback configuration file (##logback.xml##) and restart the Servlet container for it to take effect.
22
23 === Using the Log Application ===
24
25 Starting with XWiki 4.2 a new [[Logging Application>>extensions:Extension.Logging Application]] is available in your wiki's administration UI and you can use it to configure the log levels for all features.
26
27 === Using JMX ===
28
Manuel Smeria 12.2 29 [[LogBack exposes its configuration with JMX>>http://logback.qos.ch/manual/jmxConfig.html]] making it possible to use a JMX console to modify the logging configuration at runtime, thus not needing to restart the Servlet container. This is very useful in production when needing to debug an issue.
Vincent Massol 8.1 30
31 See the [[Monitoring Guide>>AdminGuide.Monitoring]] for more details on using JMX with XWiki.
32
Vincent Massol 9.1 33 == Analyzing logs with Lilith ==
34
35 [[Lilith>>http://lilith.huxhorn.de/]] is a logging and access event viewer. It makes it easy to analyze large quantities of logs. To use it, configure XWiki's Logging to send events to the Socket appender. Add the following to the ##logback.xml## file:
36
37 {{code language="xml"}}
38 ...
39 <appender name="socket" class="ch.qos.logback.classic.net.SocketAppender">
40 <RemoteHost>localhost</RemoteHost>
41 <Port>4560</Port>
42 <ReconnectionDelay>170</ReconnectionDelay>
43 <IncludeCallerData>true</IncludeCallerData>
44 </appender>
45 ...
46 {{/code}}
47
48 And add the new appender to the list of appenders to use. For example:
49
50 {{code language="xml"}}
51 ...
52 <root level="warn">
53 <appender-ref ref="stdout"/>
54 <appender-ref ref="socket"/>
55 </root>
56 ...
57 {{/code}}
58
59 Open Lilith (it's a desktop application) and it'll automatically listen on port 4560 so when you start XE you'll see its logs show up in Lilith.
60
61 For example:
62
Silvia Macovei 10.2 63 [[image:lilith.png||style="width:950px"]]
Vincent Massol 9.1 64
Vincent Massol 11.1 65 == Using a different SLF4J implementation ==
66
Manuel Smeria 12.2 67 If you wish, for example, to use Log4J to log all logs produced by XWiki you can do so by doing the following ([[described in the SLF4J manual>>hhttp://www.slf4j.org/manual.html]]):
68 * Remove the Logback SLF4J implementation from the classpath by removing ##WEB-INF/lib/logback-classic-*.jar## and ##WEB-INF/lib/logback-core-*.jar##
69 * Remove the Log4J over SLF4J JAR from the classpath by removing ##WEB-INF/lib/log4j-over-slf4j-*.jar##
Vincent Massol 11.2 70 * Add the Log4J SLF4J implementation to the classpath: ##slf4j-log4j*-*.jar##
71 * Add Log4J itself to the classpath
Vincent Massol 11.1 72
Vincent Massol 8.1 73 = For older XWiki versions =
74
Manuel Smeria 12.2 75 XWiki versions 3.0 and older use Commons Logging for logging. By default XWiki is configured so that Commons Logging uses log4J. XWiki's Log4J configuration is located inside XWiki's JAR (xwiki-core-x.y.jar), in a ##[[log4j.properties>>https://raw.github.com/xwiki/xwiki-platform/13e01088e74c170452088a56fe54fb76a7ecb041/xwiki-platform-core/xwiki-platform-oldcore/src/main/resources/log4j.properties]]## file. XWiki' JAR is itself located in your ##WEB-INF/lib/## directory.
Vincent Massol 8.1 76
77 {{info}}
78 By default XWiki is configured to log everything on the console only.
79 {{/info}}
80
81 == Using a custom Log4J configuration ==
82
Silvia Macovei 4.1 83 The best solution is to create a new ##log4j.properties## file in your ##WEB-INF/classes## directory. It'll thus override the one from the XWiki JAR. As an example, here's a sample configuration:
Vincent Massol 1.1 84
Silvia Macovei 4.1 85 {{code language="none"}}
Vincent Massol 1.6 86 ### Direct log messages to stdout
Vincent Massol 1.1 87 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
88 log4j.appender.stdout.Target=System.out
89 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
Vincent Massol 3.3 90 log4j.appender.stdout.layout.ConversionPattern=%d [%X{url}] [%t] %-5p %-30.30c{2} %x - %m %n
Vincent Massol 1.1 91
Vincent Massol 1.6 92 ### By default everything that is of warning or severity WARN, ERROR or FATAL is logged both to
93 ### the console and to the xwiki.log file.
Jerome 6.1 94 log4j.rootLogger=warn, stdout
Vincent Massol 1.1 95
Vincent Massol 1.6 96 ### Hibernate logging options
Vincent Massol 1.1 97 log4j.logger.org.hibernate=warn
98 log4j.logger.org.hibernate.SQL=warn
99 log4j.logger.org.hibernate.type=warn
100 log4j.logger.org.hibernate.ps.PreparedStatementCache=warn
101
Vincent Massol 1.6 102 ### XWiki logging configuration
Vincent Massol 3.3 103 log4j.logger.org.xwiki=info
Vincent Massol 1.1 104 log4j.logger.com.xpn.xwiki=warn
105 log4j.logger.com.xpn.xwiki.render.XWikiRadeoxRenderEngine=warn
Vincent Massol 2.1 106 log4j.logger.com.xpn.xwiki.store.migration=info
Vincent Massol 1.1 107
Vincent Massol 2.1 108 ### Deactive Struts warnings
Vincent Massol 1.1 109 log4j.logger.org.apache.struts.util.RequestUtils=error
110
Vincent Massol 1.6 111 ### Deactivate JGroups warnings
Vincent Massol 1.1 112 log4j.logger.org.jgroups=error
Vincent Massol 2.1 113
114 ## Deactive PDF Export CSS Applier warnings
115 log4j.logger.info.informatica.doc.style.css.dom=error
116 log4j.logger.org.apache.fop.layoutmgr.inline.ContentLayoutManager=error
Silvia Macovei 4.1 117 {{/code}}
Vincent Massol 1.1 118
119 Refer to Log4J's documentation to understand the settings. As an example, to turn on Hibernate's calls, just set the following:
120
Silvia Macovei 4.1 121 {{code}}
Vincent Massol 1.1 122 log4j.logger.org.hibernate.SQL=debug
Silvia Macovei 4.1 123 {{/code}}
Vincent Massol 1.1 124
Vincent Massol 8.1 125 = Activating the XWiki Monitoring feature =
Vincent Massol 3.1 126
Silvia Macovei 4.1 127 {{info}}
128 The monitoring feature is already active in the default configuration.
129 {{/info}}
Vincent Massol 3.1 130
131 XWiki has a feature to monitor times spent in its major components. To activate it, you need to:
132
Silvia Macovei 4.1 133 * Enable the Monitor plugin by adding/modifying the following plugin definition in the ##xwiki.cfg## configuration file:
Manuel Smeria 12.2 134 (((
Silvia Macovei 4.1 135 {{code language="none"}}
Vincent Massol 3.1 136 xwiki.plugins=\
137 [...]
138 com.xpn.xwiki.monitor.api.MonitorPlugin
Silvia Macovei 4.1 139 {{/code}}
Manuel Smeria 12.2 140 )))
Silvia Macovei 4.1 141 * Enable it by adding/modifying the following in the ##xwiki.cfg## configuration file:
Manuel Smeria 12.2 142 (((
Silvia Macovei 4.1 143 {{code language="none"}}
Vincent Massol 3.1 144 xwiki.monitor=1
Silvia Macovei 4.1 145 {{/code}}
Manuel Smeria 12.2 146 )))
147 * Since the plugin logs everything under the ##DEBUG## severity you also need to configure the XWiki Logging (as described above) by setting the ##com.xpn.xwiki.monitor## category to the ##DEBUG## level.
148 (((
Vincent Massol 8.1 149 For example for Logback it means adding the following in ##logback.xml##:
150
Silvia Macovei 4.1 151 {{code language="none"}}
Guillaume Fenollar 12.1 152 <logger name="com.xpn.xwiki.monitor" level="debug"/>
Vincent Massol 8.1 153 {{/code}}
154
155 And for older XWiki versions using Log4J it means adding the following in ##log4j.properties##:
156
157 {{code language="none"}}
Vincent Massol 3.1 158 log4j.logger.com.xpn.xwiki.monitor=debug
Silvia Macovei 4.1 159 {{/code}}
Vincent Massol 8.1 160 )))

Get Connected