safedb 디버깅

This commit is contained in:
Rinjae
2025-09-25 17:40:16 +09:00
parent a66c7b87f8
commit 8952dc4423
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -217,6 +217,8 @@ tasks.test {
println "classpath : ${classpath}"
systemProperty "safedb", project.property("safedb")
systemProperty "safedb", project.hasProperty("safedb")
println "project.property : ${systemProperty("safedb", null)}"
println "-------------------------------------------------------------------------------------"
}
}
@@ -78,7 +78,7 @@ public class SafeDbWrapperTest {
public void safeDBTest() {
// safedb 프러퍼티가 활성화 일때만 동작
if (!"true".equalsIgnoreCase(System.getProperty("safedb"))) {
log.info("gradle : -Psafedb 일때만 동작");
log.info("gradle : -Psafedb 일때만 동작 - {}", System.getProperty("safedb"));
return;
}