Fix debugger to print out INFO messages by default

This commit is contained in:
김선우 2025-02-02 12:54:06 +09:00
parent 51f0c9e8a3
commit 5d5261637b
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ lint_apply:
./gradlew spotlessApply
test: lint build_test
./gradlew test --info
./gradlew test
build_test:
CARGO_TARGET_DIR=src/test/resources/limbo cargo build

View file

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