Merge 'bindings/java: Change logger dependency ' from Kim Seon Woo

# The purpose of this PR
- Current implementation forces users to use logback as their logging
framework
# Changes
- Only add abstraction layer for loggin(which is slf4j in this case)
- In tests, use logback to log out messages(this doesn't affect the
users)
# References
https://github.com/tursodatabase/limbo/issues/615

Closes #863
This commit is contained in:
Pekka Enberg
2025-02-03 09:21:26 +02:00
3 changed files with 6 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
</encoder>
</appender>
<root level="debug">
<root level="${LOG_LEVEL:-info}">
<appender-ref ref="STDOUT" />
</root>
</configuration>