Commit 958c6d1d authored by alex yao's avatar alex yao

fix: 记录有null --bug==1009502

parent 29836e63
......@@ -684,7 +684,9 @@ public class AgentApplicationInfoServiceImpl implements AgentApplicationInfoServ
writer.flush();
throw ex;
}
output.append(result.getMessage());
if (StringUtils.isNotBlank(result.getMessage())) {
output.append(result.getMessage());
}
writer.write(res + "\n\n");
writer.flush();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment