xiongzhu пре 10 месеци
родитељ
комит
16e172868d
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      app/src/main/java/com/example/modifiermodule/BaseHook.java

+ 2 - 2
app/src/main/java/com/example/modifiermodule/BaseHook.java

@@ -110,7 +110,7 @@ public class BaseHook {
 
     public void readConfig() {
         try {
-            log("readConfig: " + configFile.getAbsolutePath());
+//            log("readConfig: " + configFile.getAbsolutePath());
             if (!configFile.exists()) {
                 new File(configFile.getAbsolutePath()).getParentFile().mkdirs();
                 new File(configFile.getAbsolutePath()).createNewFile();
@@ -122,7 +122,7 @@ public class BaseHook {
                 }
             }
         } catch (Exception e) {
-            log("BaseHook: " + e.getMessage());
+            log("readConfig fail: " + e.getMessage());
             e.printStackTrace();
         }
     }