Skip to content

Commit 46266cd

Browse files
aarsilvtypotter
andauthored
Fix up logging (#140)
* fix up logging * next version --------- Co-authored-by: Tyler Potter <[email protected]>
1 parent c2ea5c4 commit 46266cd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ java {
1111
}
1212

1313
group = 'cloud.eppo'
14-
version = '5.3.1-SNAPSHOT'
14+
version = '5.3.2'
1515
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
1616

1717
import org.apache.tools.ant.filters.ReplaceTokens
@@ -36,10 +36,10 @@ dependencies {
3636
implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.0'
3737
implementation 'org.ehcache:ehcache:3.10.8'
3838
implementation 'org.slf4j:slf4j-api:2.0.17'
39-
// Logback classic 1.3.x is compatible with java 8
40-
implementation 'ch.qos.logback:logback-classic:1.3.15'
4139
implementation 'org.jetbrains:annotations:26.0.2'
4240

41+
// Logback classic 1.3.x is compatible with java 8 - only needed for tests
42+
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
4343
testImplementation 'cloud.eppo:sdk-common-jvm:3.5.4:tests'
4444
testImplementation platform('org.junit:junit-bom:5.11.4')
4545
testImplementation 'org.junit.jupiter:junit-jupiter'
@@ -56,6 +56,7 @@ test {
5656
showExceptions true
5757
showCauses true
5858
showStackTraces true
59+
showStandardStreams true
5960
}
6061
}
6162

src/main/resources/logback-test.xml renamed to src/test/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</encoder>
66
</appender>
77

8-
<root level="INFO">
8+
<root level="DEBUG">
99
<appender-ref ref="STDOUT" />
1010
</root>
1111
</configuration>
File renamed without changes.

0 commit comments

Comments
 (0)