I have a logback appender:

    <appender name="logfile"
    class="ch.qos.logback.core.rolling.RollingFileAppender">
    <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
        <fileNamePattern>/opt/loghome/recon/log.%d{MM-dd-yyyy}.log          </fileNamePattern>
        <maxHistory>30</maxHistory>
    </rollingPolicy>
    <append>false</append>
    <encoder>
        <pattern>%msg%n</pattern>
    </encoder>
</appender>

I would like to change /opt/loghome/recon/log.%d{MM-dd-yyyy}.log.zip so that the log will be created in src/main/resources in my project. The aim of this is to then have the log on the classpath. Can this be done?

Thanks

link|improve this question

2  
The log will only be in the classpath once you rebuild the project. Why would you want a log file to be in the classpath anyway? And why name it .zip if it's not a zip file? – JB Nizet Dec 14 '11 at 12:04
The aim is to get a set of records from db A. do the same for db B and then use the two logs to perform a reconcilation between the two. The zip part is used to zip older versions of the log up. the format created is .log – JavaGeek Dec 14 '11 at 12:11
And why would you need the file to be in the classpath to do this. Just open it using file IO. Just because you tell slf4j to name the file xxx.zip doesn't automatically make it a zip file. It will just be a regular, uncompressed log file. – JB Nizet Dec 14 '11 at 12:15
I have removed the .zip for you :-) – JavaGeek Dec 14 '11 at 12:20
feedback

1 Answer

up vote 3 down vote accepted

I guess you're using maven. Maven builds jars/wars/ears whatever The jars don't contain src/main/resources In fact this src/main/resources path doesn't exist once your project is compiled. So I don't really get this idea to put your logs into src/main/resources.

I think its much more "healthy" to include your /opt/loghome/recon/ in the classpath when you're running your project.

Does it make sense?

link|improve this answer
Absolutley. Was thinking it would be a nice solution to be be able to build the logs and then interogate them without the need for a directory. But this is probably not going to work. Thanks – JavaGeek Dec 14 '11 at 12:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.