<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Logging in Cocoon 2.2</title>
	<atom:link href="http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/feed/" rel="self" type="application/rss+xml" />
	<link>http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/</link>
	<description></description>
	<lastBuildDate>Sat, 10 Dec 2011 22:23:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dom</title>
		<link>http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/#comment-284</link>
		<dc:creator>dom</dc:creator>
		<pubDate>Mon, 23 Nov 2009 17:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://happygiraffe.net/blog/?p=1331#comment-284</guid>
		<description>&lt;a href=&quot;#comment-1291&quot; rel=&quot;nofollow&quot;&gt;@Andreas Hartmann&lt;/a&gt; Excellent — I&#039;m glad that works for you.  Apart from the log4j.xml.  I &lt;em&gt;much&lt;/em&gt; prefer log4j.properties. :)</description>
		<content:encoded><![CDATA[<p><a href="#comment-1291" rel="nofollow">@Andreas Hartmann</a> Excellent — I&#8217;m glad that works for you.  Apart from the log4j.xml.  I <em>much</em> prefer log4j.properties. <img src='http://happygiraffe.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andreas Hartmann</title>
		<link>http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/#comment-283</link>
		<dc:creator>Andreas Hartmann</dc:creator>
		<pubDate>Mon, 23 Nov 2009 16:18:01 +0000</pubDate>
		<guid isPermaLink="false">http://happygiraffe.net/blog/?p=1331#comment-283</guid>
		<description>The following configuration for the surefire plugin is needed to make the log4j configuration work with the tests:

&lt;pre lang=&quot;xml&quot;&gt;
      &lt;plugin&gt;
        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
        &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
        &lt;configuration&gt;
          &lt;systemProperties&gt;
            &lt;property&gt;
              &lt;name&gt;log4j.configuration&lt;/name&gt;
              &lt;value&gt;file://${project.basedir}/etc/log4j.xml&lt;/value&gt;
            &lt;/property&gt;
          &lt;/systemProperties&gt;
        &lt;/configuration&gt;
      &lt;/plugin&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>The following configuration for the surefire plugin is needed to make the log4j configuration work with the tests:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">      <span style="color: #ddbb00;">&lt;</span>plugin<span style="color: #ddbb00;">&gt;</span>
        <span style="color: #ddbb00;">&lt;</span>groupId<span style="color: #ddbb00;">&gt;</span>org.apache.maven.plugins<span style="color: #ddbb00;">&lt;</span>/groupId<span style="color: #ddbb00;">&gt;</span>
        <span style="color: #ddbb00;">&lt;</span>artifactId<span style="color: #ddbb00;">&gt;</span>maven-surefire-plugin<span style="color: #ddbb00;">&lt;</span>/artifactId<span style="color: #ddbb00;">&gt;</span>
        <span style="color: #ddbb00;">&lt;</span>configuration<span style="color: #ddbb00;">&gt;</span>
          <span style="color: #ddbb00;">&lt;</span>systemProperties<span style="color: #ddbb00;">&gt;</span>
            <span style="color: #ddbb00;">&lt;</span>property<span style="color: #ddbb00;">&gt;</span>
              <span style="color: #ddbb00;">&lt;</span>name<span style="color: #ddbb00;">&gt;</span>log4j.configuration<span style="color: #ddbb00;">&lt;</span>/name<span style="color: #ddbb00;">&gt;</span>
              <span style="color: #ddbb00;">&lt;</span>value<span style="color: #ddbb00;">&gt;</span>file://${project.basedir}/etc/log4j.xml<span style="color: #ddbb00;">&lt;</span>/value<span style="color: #ddbb00;">&gt;</span>
            <span style="color: #ddbb00;">&lt;</span>/property<span style="color: #ddbb00;">&gt;</span>
          <span style="color: #ddbb00;">&lt;</span>/systemProperties<span style="color: #ddbb00;">&gt;</span>
        <span style="color: #ddbb00;">&lt;</span>/configuration<span style="color: #ddbb00;">&gt;</span>
      <span style="color: #ddbb00;">&lt;</span>/plugin<span style="color: #ddbb00;">&gt;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Arsène</title>
		<link>http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/#comment-282</link>
		<dc:creator>Arsène</dc:creator>
		<pubDate>Wed, 10 Jun 2009 23:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://happygiraffe.net/blog/?p=1331#comment-282</guid>
		<description>Inside NetBeans, as maven is launched from user.home not the project dir, you&#039;d better use an absolute path &lt;code&gt;${project.build.directory}/../etc/log4j.xml&lt;/code&gt; or &lt;code&gt;${project.build.directory}/../src/main/resources/WEB-INF/log4j.xml&lt;/code&gt; (my choice).</description>
		<content:encoded><![CDATA[<p>Inside NetBeans, as maven is launched from user.home not the project dir, you&#8217;d better use an absolute path <code>${project.build.directory}/../etc/log4j.xml</code> or <code>${project.build.directory}/../src/main/resources/WEB-INF/log4j.xml</code> (my choice).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dom</title>
		<link>http://happygiraffe.net/blog/2008/08/27/logging-in-cocoon-22/#comment-281</link>
		<dc:creator>dom</dc:creator>
		<pubDate>Mon, 12 Jan 2009 10:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://happygiraffe.net/blog/?p=1331#comment-281</guid>
		<description>Mr. Haki has a nice post on &lt;a href=&quot;http://mrhaki.blogspot.com/2009/01/add-request-logging-to-cocoon-22.html&quot; rel=&quot;nofollow&quot;&gt;adding request logging&lt;/a&gt;.  The post targets cocoon but is applicable to any maven / jetty setup.</description>
		<content:encoded><![CDATA[<p>Mr. Haki has a nice post on <a href="http://mrhaki.blogspot.com/2009/01/add-request-logging-to-cocoon-22.html" rel="nofollow">adding request logging</a>.  The post targets cocoon but is applicable to any maven / jetty setup.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

