@tmsfe/tms-core 0.0.30 → 0.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmsfe/tms-core",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "description": "tms运行时框架",
5
5
  "repository": {
6
6
  "type": "git",
@@ -131,8 +131,8 @@ function formatData(page: IPage, seqId: string, data: any[]): DataType[] {
131
131
  let index = nextIndex;
132
132
  for (const item of data) {
133
133
  if (index >= arr.length) {
134
- console.error(data);
135
- throw new Error('埋点参数个数超出上限');
134
+ console.error('埋点参数个数超出上限而被截断', data);
135
+ break;
136
136
  }
137
137
  arr[index] = convert2String(item);
138
138
  index += 1;