northernwind.it-tidalwave-northernwind-core-default.1.2-ALPHA-11.source-code.logback.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of it-tidalwave-northernwind-core-default Show documentation
Show all versions of it-tidalwave-northernwind-core-default Show documentation
A default implementation of the Core.
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L ********************************************************************************************************************* NorthernWind - lightweight CMS http://northernwind.tidalwave.it - git clone https://bitbucket.org/tidalwave/northernwind-src.git %% Copyright (C) 2011 - 2023 Tidalwave s.a.s. (http://tidalwave.it) %% ********************************************************************************************************************* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ********************************************************************************************************************* ********************************************************************************************************************* #L% --> <configuration debug="false"> <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> <!-- daily rollover --> <fileNamePattern>${nw.logFile}.%d{yyyy-MM-dd}.log.gz</fileNamePattern> <!-- keep 30 days' worth of history --> <maxHistory>30</maxHistory> </rollingPolicy> <encoder> <pattern>%d{HH:mm:ss.SSS} [%-20.20(%thread)] %-5level %-50logger{50} - %msg%n</pattern> </encoder> </appender> <logger name="org.springframework" level="INFO"/> <logger name="it.tidalwave.image" level="WARN"/> <root level="info"> <appender-ref ref="FILE" /> </root> <include file="${nw.logConfig}" optional="true" /> </configuration>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy