mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-02-08 15:46:54 +01:00
Update Gradle to 7.3. in order to profit from the performance improvement and to prepare for dependency lockfiles. Due to the upgrade to 7.x we had to use a license plugin which supports Gradle 7.
108 lines
3.4 KiB
XML
108 lines
3.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
MIT License
|
|
|
|
Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
-->
|
|
|
|
<!--
|
|
Document : logback.release.xml
|
|
Created on : February 3, 2011, 6:36 PM
|
|
Author : sdorra
|
|
Description:
|
|
Purpose of the document follows.
|
|
-->
|
|
|
|
<configuration>
|
|
|
|
<jmxConfigurator />
|
|
|
|
<define name="LOGDIR" class="sonia.scm.ScmLogFilePropertyDefiner" />
|
|
|
|
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
|
<file>${LOGDIR}/scm-manager.log</file>
|
|
|
|
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
|
|
<fileNamePattern>${LOGDIR}/scm-manager-%i.log</fileNamePattern>
|
|
<minIndex>1</minIndex>
|
|
<maxIndex>10</maxIndex>
|
|
</rollingPolicy>
|
|
|
|
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
|
|
<maxFileSize>10MB</maxFileSize>
|
|
</triggeringPolicy>
|
|
|
|
<append>true</append>
|
|
<encoder>
|
|
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] [%-10X{transaction_id}] %-5level %logger - %msg%n</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
|
|
<encoder>
|
|
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] [%-10X{transaction_id}] %-5level %logger - %msg%n</pattern>
|
|
</encoder>
|
|
|
|
</appender>
|
|
|
|
<logger name="sonia.scm" level="INFO" />
|
|
<logger name="com.cloudogu.scm" level="INFO" />
|
|
|
|
<!-- suppress massive gzip logging -->
|
|
<logger name="sonia.scm.filter.GZipFilter" level="WARN" />
|
|
<logger name="sonia.scm.filter.GZipResponseStream" level="WARN" />
|
|
|
|
<logger name="sonia.scm.util.ServiceUtil" level="WARN" />
|
|
|
|
<!-- event bus -->
|
|
<logger name="sonia.scm.event.LegmanScmEventBus" level="INFO" />
|
|
|
|
<!-- shiro -->
|
|
<!--
|
|
<logger name="org.apache.shiro" level="INFO" />
|
|
<logger name="org.apache.shiro.authc.pam.ModularRealmAuthenticator" level="DEBUG" />
|
|
-->
|
|
|
|
<!-- svnkit -->
|
|
<!--
|
|
<logger name="svnkit" level="WARN" />
|
|
<logger name="svnkit.network" level="DEBUG" />
|
|
<logger name="svnkit.fsfs" level="WARN" />
|
|
-->
|
|
|
|
<!-- javahg -->
|
|
<!--
|
|
<logger name="org.javahg" level="DEBUG" />
|
|
-->
|
|
|
|
<!-- ehcache -->
|
|
<!--
|
|
<logger name="net.sf.ehcache" level="DEBUG" />
|
|
-->
|
|
|
|
<root level="WARN">
|
|
<appender-ref ref="FILE" />
|
|
<appender-ref ref="STDOUT" />
|
|
</root>
|
|
|
|
</configuration>
|