optimize logs

This commit is contained in:
CaiHQ 2024-12-24 12:58:33 +08:00
parent 8efc164d99
commit c96ab57b17
2 changed files with 8 additions and 9 deletions

View File

@ -337,20 +337,20 @@ public class ContractClient {
LOGGER.info("start status, port:" + port + " status:" + status); LOGGER.info("start status, port:" + port + " status:" + status);
ContractResult r = JsonUtil.fromJson(status, ContractResult.class); ContractResult r = JsonUtil.fromJson(status, ContractResult.class);
if (r.status == Status.Success) { if (r.status == Status.Success) {
LOGGER.info("init prop start!");
initProps(); initProps();
LOGGER.info("init prop done!");
get.syncGet("", "setPID", pid); get.syncGet("", "setPID", pid);
} else if (r.status == null) { } else {
r.status = Status.Error; LOGGER.info("kill contract");
r.result = new JsonPrimitive(status); if (r.status == null) {
status = JsonUtil.toJson(r); r.status = Status.Error;
contractMeta.name = get.syncGet("", "getContractName", ""); r.result = new JsonPrimitive(status);
} }
if (r.status != Status.Success) {
killProcess(); killProcess();
throw new IllegalStateException(r.result.getAsString()); throw new IllegalStateException(r.result.getAsString());
} }
return status; return status;
} }
public void updateMemory() { public void updateMemory() {

View File

@ -54,7 +54,6 @@ public class YPKResourceManager {
File dir = new File(destDir); File dir = new File(destDir);
if (!dir.exists()) if (!dir.exists())
dir.mkdirs(); dir.mkdirs();
byte[] buffer = new byte[1024]; byte[] buffer = new byte[1024];
try { try {
ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFilePath)); ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFilePath));