Fix the policy_id not set
[clamp.git] / src / main / resources / logback.xml
1 <configuration debug="true">
2         <springProperty name="logbackFilePath"
3                 source="clamp.config.logback.path" />
4         <springProperty name="logbackFileName"
5                 source="clamp.config.logback.filename" />
6         <springProperty name="logDirectory"
7                 source="clamp.config.log.path" />
8                 
9         <if condition='isNull("logbackFilePath")'>
10                 <then>
11                         <!-- Classpath case -->
12                         <include resource="${logbackFileName}" />
13                 </then>
14                 <else>
15                         <!-- File system case -->
16                         <include file="${logbackFilePath}/${logbackFileName}" />
17                 </else>
18         </if>
19 </configuration>