You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ka...@apache.org on 2020/05/23 11:38:31 UTC

[fineract] branch develop updated: remove logback.xml (see FINERACT-888)

This is an automated email from the ASF dual-hosted git repository.

kaze pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 5b1c46c  remove logback.xml (see FINERACT-888)
5b1c46c is described below

commit 5b1c46c82101387e4c4989db98d1257ccd63be95
Author: Michael Vorburger <mi...@vorburger.ch>
AuthorDate: Thu May 21 17:30:35 2020 +0200

    remove logback.xml (see FINERACT-888)
    
    Read e.g. https://12factor.net/logs for why we don't want to log
    to a fineract-platform.log file anymore by default.  Of course, anyone
    could still customize logging as they see fit for their own deployments.
---
 fineract-provider/build.gradle                   |  1 +
 fineract-provider/src/main/resources/logback.xml | 53 ------------------------
 2 files changed, 1 insertion(+), 53 deletions(-)

diff --git a/fineract-provider/build.gradle b/fineract-provider/build.gradle
index 3696bd6..a2d50f2 100644
--- a/fineract-provider/build.gradle
+++ b/fineract-provider/build.gradle
@@ -591,6 +591,7 @@ bootWar {
 // To generate an HTML report instead of XML
 spotbugs {
     reportLevel = 'high'
+    showProgress = true
 }
 // https://github.com/spotbugs/spotbugs-gradle-plugin/issues/242
 spotbugsMain {
diff --git a/fineract-provider/src/main/resources/logback.xml b/fineract-provider/src/main/resources/logback.xml
deleted file mode 100644
index 8648065..0000000
--- a/fineract-provider/src/main/resources/logback.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements. See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership. The ASF licenses this file
-    to you 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.
-
--->
-
-<configuration>
-	<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
-		<layout class="ch.qos.logback.classic.PatternLayout">
-			<Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</Pattern>
-		</layout>
-	</appender>
-
-	<appender name="FILE" class="ch.qos.logback.core.FileAppender">
-		<file>${catalina.base}/logs/fineract-platform.log</file>
-		<append>true</append>
-		<!-- encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder 
-			by default -->
-		<encoder>
-			<pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n</pattern>
-		</encoder>
-	</appender>
-
-	<logger name="org.fineract.platform" level="debug" />
-	<logger name="org.apache.fineract.infrastructure.security.filter" level="info" />
-	<logger name="org.apache.fineract" level="debug" />
-	<logger name="org.springframework.web" level="info" />
-	<logger name="org.springframework.beans" level="info" />
-	<logger name="net.sf.ehcache" level="error" />
-	<logger name="org.hibernate.cache" level="error" />
-	<logger name="com.zaxxer.hikari" level="debug" additivity="false" />
-
-	<root level="info">
-		<appender-ref ref="STDOUT" />
-		<appender-ref ref="FILE" />
-	</root>
-</configuration>