feat: support rainbow v2025.3.4

This commit is contained in:
2025-08-26 16:18:45 +08:00
parent b316de054e
commit 3e5cf0680d
10 changed files with 16 additions and 41 deletions

View File

@@ -23,7 +23,7 @@ public class SystemRule {
public static boolean checkEnv(String name) {
if (checkHideEnv(name) && StackTraceRule.check()) {
DebugInfo.output("======================LoadEnv: " + name);
DebugInfo.output("======================Hide Env: " + name);
LogUtil.printStackTrace();
return true;
}
@@ -32,7 +32,7 @@ public class SystemRule {
public static boolean checkProperty(String name) {
if (checkHideProperty(name) && StackTraceRule.check()) {
DebugInfo.output("======================LoadProperty: " + name);
DebugInfo.output("======================Hide Property: " + name);
LogUtil.printStackTrace();
return true;
}