gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libeufin] branch master updated: attempt to turn logging o


From: gnunet
Subject: [GNUnet-SVN] [libeufin] branch master updated: attempt to turn logging off for io.ktor.*
Date: Tue, 08 Oct 2019 18:05:07 +0200

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new cffa456  attempt to turn logging off for io.ktor.*
cffa456 is described below

commit cffa45651040778354c73ddcaa4c51ee3725b6ad
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Oct 8 18:04:42 2019 +0200

    attempt to turn logging off for io.ktor.*
---
 resources/global-logback.xml       | 5 ++++-
 sandbox/src/test/kotlin/LogTest.kt | 5 -----
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/resources/global-logback.xml b/resources/global-logback.xml
index fb710da..4823ed1 100644
--- a/resources/global-logback.xml
+++ b/resources/global-logback.xml
@@ -1,5 +1,5 @@
 <included>
-    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
+    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender" 
additivity="false">
         <encoder>
             <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - 
%msg%n</pattern>
         </encoder>
@@ -8,4 +8,7 @@
     <root level="debug">
         <appender-ref ref="STDOUT" />
     </root>
+
+    <logger name="io.ktor.*" level="WARN" />
+
 </included>
\ No newline at end of file
diff --git a/sandbox/src/test/kotlin/LogTest.kt 
b/sandbox/src/test/kotlin/LogTest.kt
index 3fe54fc..eca81d5 100644
--- a/sandbox/src/test/kotlin/LogTest.kt
+++ b/sandbox/src/test/kotlin/LogTest.kt
@@ -11,11 +11,6 @@ class LogTest {
     @Test
     fun logLine() {
 
-        val cl = ClassLoader.getSystemClassLoader()
-        val urls = (cl as URLClassLoader).urLs
-        for (url in urls) {
-            // println(url)
-        }
         val logger = LoggerFactory.getLogger("sandbox.log.test")
         logger.info("line")
     }

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]