xiongzhu 10 месяцев назад
Родитель
Сommit
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() {
     public void readConfig() {
         try {
         try {
-            log("readConfig: " + configFile.getAbsolutePath());
+//            log("readConfig: " + configFile.getAbsolutePath());
             if (!configFile.exists()) {
             if (!configFile.exists()) {
                 new File(configFile.getAbsolutePath()).getParentFile().mkdirs();
                 new File(configFile.getAbsolutePath()).getParentFile().mkdirs();
                 new File(configFile.getAbsolutePath()).createNewFile();
                 new File(configFile.getAbsolutePath()).createNewFile();
@@ -122,7 +122,7 @@ public class BaseHook {
                 }
                 }
             }
             }
         } catch (Exception e) {
         } catch (Exception e) {
-            log("BaseHook: " + e.getMessage());
+            log("readConfig fail: " + e.getMessage());
             e.printStackTrace();
             e.printStackTrace();
         }
         }
     }
     }