gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libeufin] branch master updated: get logback.xml picked up


From: gnunet
Subject: [GNUnet-SVN] [libeufin] branch master updated: get logback.xml picked up
Date: Tue, 08 Oct 2019 16:55:53 +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 2d0b2e2  get logback.xml picked up
2d0b2e2 is described below

commit 2d0b2e24f0e91c16a479bc2e8545a4d2461d9ce4
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Oct 8 16:55:47 2019 +0200

    get logback.xml picked up
---
 build.gradle                       | 1 +
 sandbox/src/test/kotlin/LogTest.kt | 7 +++++++
 2 files changed, 8 insertions(+)

diff --git a/build.gradle b/build.gradle
index 2230ba5..0b53f74 100644
--- a/build.gradle
+++ b/build.gradle
@@ -43,6 +43,7 @@ subprojects {
         compile "javax.activation:activation:1.1"
         compile "org.glassfish.jaxb:jaxb-runtime:2.3.0"
         testCompile group: 'junit', name: 'junit', version: '4.12'
+        runtime rootProject.files("resources")
     }
 
 }
\ No newline at end of file
diff --git a/sandbox/src/test/kotlin/LogTest.kt 
b/sandbox/src/test/kotlin/LogTest.kt
index e5dffb9..3fe54fc 100644
--- a/sandbox/src/test/kotlin/LogTest.kt
+++ b/sandbox/src/test/kotlin/LogTest.kt
@@ -4,11 +4,18 @@ import org.junit.Assert
 import org.junit.Test
 import org.junit.Assert.*
 import org.slf4j.LoggerFactory
+import java.net.URLClassLoader
 
 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]