删除部分用于调试的代码

This commit is contained in:
aoshiguchen
2022-07-29 06:33:22 +08:00
parent bd2269ef38
commit 7c6dd2e974
2 changed files with 0 additions and 4 deletions
@@ -212,16 +212,13 @@ public class ProxyCompiler {
diagnostic.getColumnNumber(),
diagnostic.getMessage(null)));
}
System.out.println("编译失败,原因:" + rs.toString());
log.error("编译失败,原因:{}", rs.toString());
} else {
System.out.println("编译成功");
StringBuilder sb = new StringBuilder();
Arrays.stream(files).forEach(file -> {
sb.append(file.getName());
sb.append(";");
});
log.info("编译成功:{}", sb.toString());
}
}
@@ -36,7 +36,6 @@ import fun.asgc.neutrino.core.util.SystemUtil;
public class ProxyServer {
public static void main(String[] args) {
GlobalConfig.setIsSaveGeneratorCode(true);
NeutrinoLauncher.run(ProxyServer.class, args).sync();
}