You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ar...@apache.org on 2023/06/27 11:05:52 UTC

[fineract] branch develop updated: FINERACT-1724 overrides default statusListener with NopStatusListener so jansi related missing class exception will not be shown. (The exception is irrelevant because intellij and windows terminal can already handle ansi color codes)

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

arnold 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 0109d2493 FINERACT-1724 overrides default statusListener with NopStatusListener so jansi related missing class exception will not be shown. (The exception is irrelevant because intellij and windows terminal can already handle ansi color codes)
0109d2493 is described below

commit 0109d24934a58c562810310f6c2641bbd7481331
Author: Peter Bagrij <pe...@dpc.hu>
AuthorDate: Mon Jun 26 17:26:08 2023 +0200

    FINERACT-1724 overrides default statusListener with NopStatusListener so jansi related missing class exception will not be shown. (The exception is irrelevant because intellij and windows terminal can already handle ansi color codes)
---
 integration-tests/src/test/resources/logback.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/integration-tests/src/test/resources/logback.xml b/integration-tests/src/test/resources/logback.xml
index 30cf96640..90e259521 100644
--- a/integration-tests/src/test/resources/logback.xml
+++ b/integration-tests/src/test/resources/logback.xml
@@ -20,6 +20,7 @@
 
 -->
 <configuration scan="false">
+    <statusListener class="ch.qos.logback.core.status.NopStatusListener" /> <!-- this hides the warning related to jansi in windows -->
     <contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator">
         <resetJUL>false</resetJUL>
     </contextListener>