Hi, all,

In looking at the code in Log and Props, I found that I could
conceivably set up log4j by creating a 'default.log4j.xml' file. I
added this to src/main/resources and added the following to my
pom.xml:

        <filters>
            <filter>${basedir}/src/main/filters/${targetEnv}.properties</filter>
        </filters>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <filtering>true</filtering>
                <includes>
                    <include>**/*.xml</include>
                </includes>
            </resource>
        </resources>

A quick "mvn clean resources:resources" has the filed copied to the right place:

[EMAIL PROTECTED]:~/work/gcsi/gcsi-admin$ ll
target/classes/default.log4j.xml
-rw-r--r-- 1 knuttycombe knuttycombe 2538 2008-09-09 10:57
target/classes/default.log4j.xml

However, when I run "mvn clean package" the file ends up with zero
length. Here's the suspicious Maven output:

[INFO] [resources:resources]
[INFO] Using default encoding to copy filtered resources.
[INFO] [yuicompressor:compress {execution: default}]
[INFO] default.log4j.xml (0b) -> default.log4j.xml (0b)[100%]
[INFO] nb warnings: 0, nb errors: 0

And the file is empty:

[EMAIL PROTECTED]:~/work/gcsi/gcsi-admin$ ll
target/classes/default.log4j.xml
-rw-r--r-- 1 knuttycombe knuttycombe 0 2008-09-09 10:58
target/classes/default.log4j.xml

Commenting out the yuicompressor plugin seems to solve this problem,
and my log file shows up where expected when I run the app. So, to get
around to my questions, is there already a reference available on how
to configure logging in Lift, or would it be useful to for me to
document this on the wiki? Furthermore, does anyone have an idea as to
why the yuicompressor might be screwing with resource copying?

Kris

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to