[工控机监控]提示错误修改

This commit is contained in:
xinfengkun
2023-02-06 16:26:19 +08:00
parent a613dcd259
commit 9fc9062230

View File

@@ -181,7 +181,7 @@ public class DataDistribution {
public String cutDown(String str) { public String cutDown(String str) {
if (isCutDown && str.length() > 650) { if (isCutDown && str.length() > 650) {
str = str.substring(0, 650) + "\n已缩短。如需查看完整数据请勾选日志存储复选框)"; str = str.substring(0, 650) + "\n已缩短。如需查看完整数据请勾选日志缩短复选框)";
} }
return str; return str;
} }