diff --git a/rest/fints4kRest/build.gradle b/rest/fints4kRest/build.gradle index 8a525108..bbdd6852 100644 --- a/rest/fints4kRest/build.gradle +++ b/rest/fints4kRest/build.gradle @@ -22,6 +22,9 @@ dependencies { implementation 'io.quarkus:quarkus-resteasy' implementation 'io.quarkus:quarkus-resteasy-jackson' + implementation "ch.qos.logback:logback-classic:$logbackVersion" + + testImplementation 'io.quarkus:quarkus-junit5' testImplementation 'io.rest-assured:kotlin-extensions' } diff --git a/rest/fints4kRest/src/main/resources/logback.xml b/rest/fints4kRest/src/main/resources/logback.xml new file mode 100755 index 00000000..828c47b6 --- /dev/null +++ b/rest/fints4kRest/src/main/resources/logback.xml @@ -0,0 +1,36 @@ + + + + + %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n + + + + DEBUG + + + + + + + + + data/logs/fints4kRest-${bySecond}.log + + + %-4relative [%thread] %-5level %logger{35} - %msg%n + + + + DEBUG + + + + + + + + \ No newline at end of file